Login with creds
email:[email protected] or [email protected]
password:test
docker-compose build
docker-compose up
You can check the DB from Docker, go to mongodb-1 container, select Exec tab and then (you can get the value of these from .env file)
mongo -u user -p password
use dbname
show collections
db.users.find().toArray()
cd backend
npm run migrate
npm start
cd frontend
npm start
open new terminal and run and let it run
npx tailwindcss -i ./src/index.css -o ./src/output.css --watch
npx prettier . --write