/QuidX

Primary LanguageTypeScript

QuidX

Requirements

Getting Started

Ensure secrets are present as we have in .env.example

  • Ensure you have a valid .env file in the root directory

Start service containers (Redis and postgres)

$ docker compose up -d

Start the server

$ yarn install
$ yarn run prisma:postgres:dbpush  # syncs the postgres with the Prisma schema
$ yarn run start:dev

View postgres database

yarn run prisma:studio

View the openIA documentation

http://localhost:8000/swagger

Stop service containers (Redis and postgres)

$ docker compose down