- If necessary, update the datebase in your
docker-compose.yml
file: - Create a
.env
from.env.sample
and edit with your configuration - Run
docker-compose up -d
to start the database- If you want to see the log, exclude the
-d
flag - To stop it, run
docker-compose stop
- If you want to see the log, exclude the
- Run:
npm install
- Run to start the server:
npm run start
File name | Description |
---|---|
└── src (directory) |
Contains the source files for your GraphQL server |
├── index.ts |
The entry point for your GraphQL server |
├── core (directory) |
Application's core files |
└── api (directory) |
GraphQL API files |
├── modules (directory) |
The application modules |
└── server.ts |
API entry file |