Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/django-sie
new S.I.E. with Python and Django
https://github.com/tiagocordeiro/django-sie
Last synced: about 2 months ago
JSON representation
new S.I.E. with Python and Django
- Host: GitHub
- URL: https://github.com/tiagocordeiro/django-sie
- Owner: tiagocordeiro
- License: mit
- Created: 2020-07-09T19:09:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T07:40:26.000Z (about 2 years ago)
- Last Synced: 2024-10-30T09:43:22.712Z (3 months ago)
- Language: CSS
- Size: 3.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django SIE
### 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/django-sie.git
cd django-sie
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
```### Configurar administrador
Para cria um usuário administrador
```
python manage.py createsuperuser --username dev --email [email protected]
```### Banco de dados para ambiente de desenvolvimento com Docker
```
docker-compose up -d
```### Rodar em ambiente de desenvolvimento
Para rodar o projeto localmente
```
python manage.py runserver
```