# Change directory
$ cd space-flight-booking
# Rename the .env example file
$ mv .env.example .env
# Runing the docker containers
$ docker-compose up
# Change directory
$ cd space-flight-booking
# Rename the .env example file
$ mv .env.example .env
# Install NPM dependencies
$ npm install
# Create database tables
$ npm run migrate
# Seed database with planets and spaceCenters
$ npm run seed
# Start the project
$ npm start$ npm run testAll the queries and the mutations are protected. They are accessed by sending the authorization key.
{
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
}