A modern CTF platform to help inquisitive minds learn & grow.
Create a .env file:
cp .env.example .env
And spin up the postgres based stack:
docker compose -f docker/docker-compose.yml up
You can now migrate the database:
yarn prisma:migrate
Now, seed the database:
yarn prisma:seed
After setting up, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can use Prisma Studio to query and update the database directly:
yarn prisma:studio