https://github.com/ali-hv/workeas
A task manager API & site with FastApi
https://github.com/ali-hv/workeas
fastapi pydantic python sqlalchemy
Last synced: about 2 months ago
JSON representation
A task manager API & site with FastApi
- Host: GitHub
- URL: https://github.com/ali-hv/workeas
- Owner: ali-hv
- License: gpl-3.0
- Created: 2024-03-18T21:54:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T21:09:58.000Z (about 2 years ago)
- Last Synced: 2025-01-07T21:21:52.727Z (over 1 year ago)
- Topics: fastapi, pydantic, python, sqlalchemy
- Language: Python
- Homepage: https://ali-hv.github.io/workeas-docs/
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Never forget any task anymore 🚀
## Introduction
`Workeas` allows you to manage your tasks in the simplest way. Simplicity is the key advantage of workeas.
Easily add your tasks and set a priority for that task from LOW to CRITICAL and guess what? with a quick glance,
you can be aware of your critical or high priority tasks and take care of them.
## Documentation
You can read the api documentation made by swagger [here](https://ali-hv.github.io/workeas-docs/).
## Usage
First, clone the repository and move into the cloned directory:
```shell
git clone https://github.com/ali-hv/workeas.git
cd workeas
```
Then, create a python virtual environment:
```shell
python3 -m venv .venv
```
Next, install the requirements
```shell
pip install -r requirements.txt
```
Finally, run the app(run this command in the root directory of the project):
```shell
python3 runserver.py
```
## Change Timezone
Workeas currently just supports ```UTC``` and ```Asia/Tehran``` timezones. The default timezone is ```UTC```,
to change it, open settings.py file in the ```app``` directory and replace ```UTC``` with ```Asia/Tehran```:
```python
timezone = "Asia/Tehran"
```