- Node
- PostgreSQL
- Clone this project
cp .env.example .env
Create .env fileyarn install
Installs all the dependencies for your projectdocker-compose up -d
Run database postgress in docker with
In order to install DB the code must be compiled. So if you are working with migration
remember to run yarn build
first.
yarn db migration:run
Build code an migrate database tables.yarn seed:run
To populate the DB with faker data. Using typeorm-extension
- Remove all tables and schemas:
yarn db schema:drop
- Install DB again
- Run
yarn start:dev
- Go to http://localhost:4000/graphql/
- Run this query
mutation {
login(email:"me@albertcito.com", password:"Hola12345") {
token
}
}
- Add the token in HTTP HEADERS tab to run the private queries:
{
"Authorization": "Bearer ${token}"
}
For Bible formating, please review: Unified Standard Format Markers
Before to send a PR please do it:
- Run
yarn test
to run the test in dev environment. - Run
yarn build
to ensure build is working. - Run
yarn prod:test
to run the test in with the js files. - Run
yarn eslint --fix
to validate the code style. - Run
yarn ejslint --fix
to validate the ejs files.
- To debug email in your localhost use this software: https://nodemailer.com/app/