Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 532 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 532 Bytes

PokeGame

A system to manage the WebApp PokeGame.

Install

For this project you'll need to have docker in your computer.

Start

To start the server just run:

docker-compose up

Development

If you need to run migrations and seeders just run:

docker exec --it <container> npm run migrate
docker exec --it <container> npm run seeder

You can use knex`s commands by running

docker exec --it <container> npm run knex <commands>

To use the linter run:

npm run linter