- Create the required containers
docker run --name postegres -e POSTGRES_PASSWORD=docker -p 5432:5432 -d postgres docker run --name mongo -p 27017:27017 -d -t mongo docker run --name redis -p 6379:6379 -d -t redis:alpine
- Create a postgres databse (I used DBeaver) and then run the migrations
yarn dev:server
- Start the containers before starting the backend
docker start <container_id>
Inside the project's folder, run:
yarn
yarn dev:server
yarn start
yarn ios
or
yarn android
- Node - JavaScript runtime environment
- ReactJs - A declarative, efficient, and flexible JavaScript library for building user interfaces.
- Yarn - Package Manager
- Express - Web framework used NodeJS
- TypeScript - Typed Superset of JavaScript - used as a development dependency
- Docker - Complete environments in containers
- Geraldo Braz - Initial work - @geraldobraz
This project is licensed under the MIT License - see the LICENSE.md file for details