Clone:
git clone https://github.com/chrisrex007/IRISMS.git
Redis setup:
sudo apt install redis-server
redis-server
Setup Postgres:
sudo apt -y install postgresql
psql -U postgres -h localhost -p 5432
CREATE DATABASE mydb;
Then add DATABASE_URL
and Admin password and username accordindgly in .env
file
Run prisma migration:
npx prisma migrate --name dev
Start the server:
cd IRISMS
npm install
npm run dev