Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/thelemic-tools
Algumas ferramentas básicas para o trabalho Thelemico
https://github.com/tiagocordeiro/thelemic-tools
hacktoberfest
Last synced: about 2 months ago
JSON representation
Algumas ferramentas básicas para o trabalho Thelemico
- Host: GitHub
- URL: https://github.com/tiagocordeiro/thelemic-tools
- Owner: tiagocordeiro
- License: mit
- Created: 2019-09-29T16:22:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-23T15:24:54.000Z (3 months ago)
- Last Synced: 2024-10-23T20:15:27.251Z (3 months ago)
- Topics: hacktoberfest
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# thelemic-tools
Algumas ferramentas básicas para o trabalho Thelemico### 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/thelemic-tools.git
cd thelemic-tools
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
```Cria usuário
```
python manage.py createsuperuser --username dev --email [email protected]
```Rode o projeto
```
python manage.py runserver
```