git clone https://github.com/felipeisalves/multstack-ediaristas-python.git
pip install -r requirements.txt
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'nome_do_db',
'HOST': '_do_db_db',
'PORT': porta_do_db,
'USER': 'usuario_do_db',
'PASSWORD': 'senha_db'
}
}
python manage.py migrate
python manage.py runserver