Overview | Technology | How to use | How to contribute
This project aims to create a To-Do application, which allows a list of tasks,
This project was developed with the following technologies:
Frontend Mobile
Backend
You should have:
- NodeJS
- Package manager (NPM ou Yarn)
$ git clone https://github.com/ojeffoinheiro/task.git
$ cd task
cd backend && yarn install
cd mobile && yarn install
Enter on folder
$ cd backend
Run the server
$ yarn start
Enter on folder
$ cd mobile
Run the application (iOS)
$ react-native run-ios --simulator="iPhone XS Max"
Run the application (Android)
$ react-native run-android
- Fork this repository;
- Create a branch with your feature:
git checkout -b my-feature
; - Commit your changes:
git commit -m 'feat: My new feature'
; - Push to your branch:
git push origin my-feature
.