Skip to content

Latest commit

 

History

History
executable file
·
46 lines (33 loc) · 686 Bytes

README.md

File metadata and controls

executable file
·
46 lines (33 loc) · 686 Bytes

ManifestCTF

A modern CTF platform to help inquisitive minds learn & grow.

Getting Started

Setup

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

Running

After setting up, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Development

You can use Prisma Studio to query and update the database directly:

yarn prisma:studio