# Install dependencies
npm install
# Run local db
docker compose -f compose.local-db.yml up -d
# Run db migration and generate prisma client
npm run prisma
# Run dev server
npm run dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
# copy config example file
cp config/docker.env.example config/docker.env
# copy example compose file
cp docker-compose-example.yml docker-compose.yml
# docker image version config
# Set it to latest, or specific version like v1.3.4
echo 'NEO_QUESDON_VERSION=v1.3.4' > .env
# Edit config file
vim config/docker.env
# Compose pull
docker compose pull
# Deploy
docker compose up -d