/shoptimal

Primary LanguageCSSGNU Affero General Public License v3.0AGPL-3.0

Shoptimal

Setup (development)

Install node on your system and all necessary npm modules

npm install

Copy .env.example to .env and update any variables that you find necessary

cp -i .env.example .env

Run the development docker-compose which setups the postgres database

docker compose -f docker-compose.dev.yml up -d 

Populate the database

npx prisma migrate dev
npx prisma db seed

And finally run the server

npm run dev

Go to http://localhost:3000