POC for RICELIPKA to run the latest version of Directus.
Ensure MySQL is installed locally. If you need to import existing data, follow these steps:
- Create a local MySQL DB:
mysql -u root -p
> CREATE DATABASE ricelipka_db;
> quit- Import Data (Optional):
mysql -u root -p ricelipka_db < backup_file.sqlTo get started with the project, follow these steps:
- Install dependencies
npm install- Set up the Enviroment Variables Copy the .env file
cp .env.example .envEdit the .env file with your configuration details.
- To bootstrap Directus and start the CMS:
npm run bootstrap- Start the CMS:
npm run startAccess Directus:
Visit http://localhost:8055 in your browser and log in using the credentials set in the .env file.