This project is a frontend application of a simple todo list. In order to work properly, the application needs a web server and a database. Here you can find a repository with a Rails API ready to work as backend.
-
Install and run backend: https://github.com/lionffl/pair-todo-backend
-
Clone this repo:
git clone git@github.com:lionffl/pair-todo-frontend.git
-
Navigate to project folder:
cd pair-todo-backend
-
Install dependencies:
npm install
-
Enviroment variables settings: Rename
.env.example
to.env
. -
Run:
npm start
React app should be now running at http://localhost:3001 (default port in .env.example)
If you'd like to contribute to the project, please follow these guidelines:
- Fork the repository.
- Create a feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.