Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 885 Bytes

README.md

File metadata and controls

48 lines (37 loc) · 885 Bytes

RICELIPKA Directus POC

POC for RICELIPKA to run the latest version of Directus.

MySQL

Ensure MySQL is installed locally. If you need to import existing data, follow these steps:

  1. Create a local MySQL DB:
mysql -u root -p
> CREATE DATABASE ricelipka_db;
> quit
  1. Import Data (Optional):
mysql -u root -p ricelipka_db < backup_file.sql

Getting Started

To get started with the project, follow these steps:

  1. Install dependencies
npm install
  1. Set up the Enviroment Variables Copy the .env file
cp .env.example .env

Edit the .env file with your configuration details.

Directus

  1. To bootstrap Directus and start the CMS:
npm run bootstrap
  1. Start the CMS:
npm run start

Access Directus:

Visit http://localhost:8055 in your browser and log in using the credentials set in the .env file.