Installation
To install and start developing with Zentinel, follow these steps: Clone the repository:
git clone https://github.com/surelle-ha/zentineljs.gitcd zentineljsnpx rimraf ./.git
Navigate to the directory and install the dependencies using npm
:
npm install
Set the environment variables
cp .env.example .env# open .env and modify the environment variables (if needed)
Migrate Database
npx sequelize-cli db:migrate
Seed Default Data
npx sequelize-cli db:seed:all
Start Server
npm run dev