Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```