https://github.com/brawlingthebits/eisenhower-matrix
Eisenhower matrix API, which helps prioritization of tasks according to the degree of urgency and importance.
https://github.com/brawlingthebits/eisenhower-matrix
flask python
Last synced: 11 months ago
JSON representation
Eisenhower matrix API, which helps prioritization of tasks according to the degree of urgency and importance.
- Host: GitHub
- URL: https://github.com/brawlingthebits/eisenhower-matrix
- Owner: brawlingthebits
- Created: 2022-04-22T16:31:05.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-20T17:15:21.000Z (almost 4 years ago)
- Last Synced: 2025-01-19T09:30:27.611Z (over 1 year ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eisenhower-matrix
API da matriz de Eisenhower, que auxilia a priorização de tarefas de acordo com o grau de urgência e importância.
## Como rodar esta aplicação?
### 1. Primeiramente, clone este repositório na sua máquina e acesse o mesmo pelo terminal.
### 2. Será necessário ter o Python a partir da terceira versão instalado. Então, crie um ambiente virtual com o Python:
```shell
python -m venv venv
```
### 3. Entre no ambiente virtual criado:
```shell
. venv/bin/activate
```
### 4. Instale todas as dependências necessárias para que a aplicação rode.
```shell
pip install -r requirements.txt
```
### 5. Crie um arquivo .env e o preencha com seus dados a partir do .env.example
### 6. Rode as migrations após criar uma database num banco de dados SQL da sua preferência
```shell
flask db run
```
### 7. Agora você tem acesso às rotas na sua máquina.