mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
* created self-hosted section, moved installation guides, and re-edited first draft of the cloud quickstart guide
* refactored step 1 into two steps
* added media
* pre-mgmt submission proofread
* pulled down on wrong branch.
Revert "pre-mgmt submission proofread"
This reverts commit dfd678d083.
* first draft, halfway done
* first draft done
* added directus cloud section, first draft
* second draft, applied ben's desired edits
* moved resources out of intro and into separate page
* tiny tweaks
* heavily edited whats directus and tidied up lower sections
* link checked and proofedited with grammarly
* Update docs/getting-started/resources.md
* Update docs/getting-started/introduction.md
* Auto-format indentation
Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
41 lines
1.6 KiB
Markdown
41 lines
1.6 KiB
Markdown
# Extensions
|
|
|
|
> In addition to being highly customizable, Directus has been architected to be completely modular and extensible. This
|
|
> ensures you will never hit a hard feature ceiling within the platform.
|
|
|
|
Build, modify or expand any feature needed for your app or project. What makes Directus so flexible is that it has been
|
|
designed from the ground up with complete extensibility. In addition to offering our software's codebase as open-source,
|
|
we've broken down the app code into component pieces called Extensions. New Extensions can be created, modified or
|
|
expanded to suit any need. However, the following extension types come with the platform's App and API.
|
|
|
|
## Extension SDK
|
|
|
|
The easiest way to start creating extensions is to use the [Extensions SDK](/extensions/creating-extensions/).
|
|
|
|
## App Extensions
|
|
|
|
Allow creating custom experiences within the Directus App.
|
|
|
|
- [Modules](/extensions/modules/) — Created with Vue.js
|
|
- [Layouts](/extensions/layouts/) — Created with Vue.js
|
|
- [Interfaces](/extensions/interfaces/) — Created with Vue.js
|
|
- [Displays](/extensions/displays/) — Created with Vue.js
|
|
- [Panels](/extensions/panels/) — Created with Vue.js
|
|
- [Themes](/extensions/themes/) — Created with custom CSS
|
|
|
|
## API Extensions
|
|
|
|
Allow extending and customizing the data pipeline and platform logic.
|
|
|
|
- [Endpoints](/extensions/endpoints/) — Created with JavaScript / Node.js
|
|
- [Hooks](/extensions/hooks/) — Created with JavaScript / Node.js
|
|
- [Email Templates](/extensions/email-templates/) — Created with Liquid.js
|
|
- [Migrations](/extensions/migrations/) — Created with JavaScript / Node.js
|
|
|
|
<!-- ## CLI Extensions
|
|
|
|
TBD
|
|
|
|
- Commands
|
|
- Extensions -->
|