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 ./.gitNavigate to the directory and install the dependencies using npm:
npm installSet the environment variables
cp .env.example .env# open .env and modify the environment variables (if needed)Migrate Database
npx sequelize-cli db:migrateSeed Default Data
npx sequelize-cli db:seed:allStart Server
npm run dev