https://github.com/weibeu/todox
https://github.com/weibeu/todox
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/weibeu/todox
- Owner: weibeu
- Created: 2020-05-27T12:51:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-27T04:42:05.000Z (over 2 years ago)
- Last Synced: 2024-05-28T16:53:44.302Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.28 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TODOx
### Setup
Assuming you have Python3.8 installed. Make the following commands:
```shell script
$ python3.8 -m venv venv
# For Windows:
$ cd venv/Scripts/
$ activate
$ cd ..
$ cd ..# For Linux:
$ source venv/bin/activate# Install requirements.
$ pip install -r requirements.txt
$ npm install# Run.
$ python manage.py runserver
```## Frontend React app
**PATH:** `todox/frontend/src`
### How to build?
- **With hot reload**
```shell script
$ npn run dev
```- **Production build**
```shell script
$ npm run build
```## API Endpoints
### Authorization
**BASE URL:** `/api/auth`
- `/register/`
- `/authorize/`
- `/user/`
- `/revoke/`### Todo
**BASE URL:** `/api`
- `/tasks/`