Name: Zhang Ziqing, Matriculation Number: A0223145R
Try the production version
Taskinate is a todo list that aims to make people's life easier. Nowadays many todo list apps are equipped with increasingly more features which actually causes more anxiety for anxious people who are looking for simple application to record down their tasks in an effective way. In light of this, Taskinate provides a simple solution using tasks and tags features without overwhelming its users, with the belief that beautiful todo list applications should remain simple yet powerful.
The final submission can be found in final-submission
folder.
This app was develpoed on macOS Mojave 10.14 only. Moreover, the production version is running on FireFox 85.0 and Microsoft Edge 84.0.522.44. It does not support Chrome yet due to potential issues with cookies setting (only able to sign up, log in and sign out, but cannot perform the other features).
- Sign up and login with username, email and password.
- Create, retrieve, update and delete tasks and tags.
- Check or uncheck tasks depending on its status.
- Tag tasks in Overview page.
- Filter tasks according to tags.
- Search tasks by name in the overview table.
- Home The welcome page of the simplest list of task titles.
- Tags The sidebar list of tags in the current account. Click on each tag to view the tagged tasks accoridngly.
- Overview The detailed page of tasks and tags. Edit, check, delete, and tag tasks.
taskinate-todo-list
contains two submodules:
- Frontend React code can be found at
taksinate-app
submodule, hosted at https://taskinate-app.herokuapp.com/ - Backend Ruby on Rails code can be found at
taksinate-api
submodule, hosted at https://taskinate-api.herokuapp.com/
- To clone the git repository with submodules to local address, please use this command:
git clone --recursive https://github.com/ziqing26/taskinate-todo-list.git
- Unzip the folder, open the terminal to change directory to the folder.
- Make sure your local environment has:
- Rails 6.0.3.4
- Ruby 2.7.2
- Postgres
- In the rails root directory
taksinate-api
, run
bundle install
- Then execute:
bundle exec rails db:create
bundle exec rails db:setup
to create and setup database. 4. Start the rails server:
bundle exec rails s
The api server is now on http://localhost:5000
Change all axios.defaults.baseURL to http://localhost:5000 before proceed.
In the project directory taksinate-app
, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.