@wbce-d9/directus9
v12.0.1
Published
Directus is a real-time API and App dashboard for managing SQL database content
Readme
d9 is an open-source fork of Directus 9 (GPLv3), maintained independently by La Webcapsule. This repository is not affiliated with the Directus core team.
Introduction
d9 is a free and open-source data platform for headless content management. It can be installed on top of any new or existing SQL database, instantly providing a dynamic API (REST+GraphQL) and accompanying App for managing content. Built entirely in TypeScript (in Node and Vue), d9 is completely modular and end-to-end extensible... with absolutely no paywalls or artificial limitations.
Modern and intuitive, the d9 App enables no-code data discovery, allowing for even the most non-technical users to view, author, and manage your raw database content. Our performant and flexible API is able to adapt to any relational schema, and includes rule-based permissions, event/web hooks, custom endpoints, numerous auth options, configurable storage adapters, and much more.
Current database support includes: PostgreSQL, MySQL, SQLite, MS-SQL Server, OracleDB, MariaDB, and variants such as AWS Aurora/Redshift or Google Cloud Platform SQL.
Learn more at...
Installing
d9 requires NodeJS 18+.
Install d9:
npm install @wbce-d9/directus9Or using yarn:
yarn install @wbce-d9/directus9Create a new project with our simple CLI tool:
npx directus initThe above command will create a directory with your project name, then walk you through the database configuration and creation of your first admin user.
Updating
To update an existing d9 project, navigate to your project directory and run:
npm updateMigrating from [email protected]^ to @[email protected]^
You need to change your dependencies:
- In package.json
"directus":9.0.0^ --> "@wbce-d9/directus9": 9.0.0^
"@directus/some-package" --> "@wbce-d9/some-package"- Update your dependencies:
npm update- If you have some code:
import {...} from "directus"
import {...} from "@directus/some-package"should become:
import {...} from "@wbce-d9/directus9"
import {...} from "@wbce-d9/some-package"- You don't have to do any changes to your databases. d9 uses the same schema as [email protected]^. As a consequence, you don't need other changes than the three steps below.
Contributing
Please report any and all issues on our GitHub.
Pull-requests are more than welcome, and always appreciated. Please be sure to read our Contributors Guide before starting work on a new feature/fix, or reach out via GitHub Discussions with any questions.
License
d9 is released under the GPLv3 license. This repository is a fork of Directus 9, which was released under GPLv3 by Monospace Inc. d9 is an independent project maintained by La Webcapsule.
