Skip to content

Installation

To install and start developing with Zentinel, follow these steps: Clone the repository:

Terminal window
git clone https://github.com/surelle-ha/zentineljs.git
cd zentineljs
npx rimraf ./.git

Navigate to the directory and install the dependencies using npm:

Terminal window
npm install

Set the environment variables

Terminal window
cp .env.example .env
# open .env and modify the environment variables (if needed)

Migrate Database

Terminal window
npx sequelize-cli db:migrate

Seed Default Data

Terminal window
npx sequelize-cli db:seed:all

Start Server

Terminal window
npm run dev