Proffy is a platform that we can hire private teachers. This application was created for study purposes in the event Next Level Week of Rocketseat (https://nextlevelweek.com).
All screens of the:
- NodeJS (back-end)
- ReactJS (web front-end)
- React Native (mobile front-end)
Note: it requires yarn installed
Initial steps
$ git clone https://github.com/ruifernandees/proffy.git
$ cd proffyRun back-end (API REST)
# Access the back-end folder
$ cd server
# Install all dependencies
$ yarn install
# Run all migrations
$ yarn knex:migrate
# Start the server
$ yarn start
Run web front-end
# Access the web front-end folder
$ cd web
# Install all dependencies
$ yarn install
# Run the web project
$ yarn start