Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/treino-drida
https://github.com/tiagocordeiro/treino-drida
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tiagocordeiro/treino-drida
- Owner: tiagocordeiro
- Created: 2019-04-13T18:13:11.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T10:41:11.000Z (about 2 years ago)
- Last Synced: 2024-10-30T09:43:25.592Z (3 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Como rodar o projeto
* Clone esse repositório.
* Crie um virtualenv com Python 3.
* Ative o virtualenv.
* Instale as dependências.
* Rode as migrações.```
git clone https://github.com/tiagocordeiro/treino-drida.git
cd treino-drida
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python contrib/env_gen.py
python manage.py migrate
```