- Clone o projeto:
git clone https://github.com/CleitonDeLima/myfinances.git
- Crie um ambiente virtual do python:
cd myfinances
python -m venv .venv
source .venv/bin/activate
- Crie o arquivo
.env
na raiz do projeto com o conteúdo:
SECRET_KEY=IS_SECRET
DEBUG=True
ALLOWED_HOSTS=*
DATABASE_URL=sqlite3:///db.sqlite3
IS_SECURE=False
- Instale as dependencias:
pip install -r requirements.txt && pip install ipython
- Rode as migrações:
python manage.py migrate
- Crie um superuser:
python manage.py createsuperuser
- Rodar o runserver:
python manage.py runserver