No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Tanner Collin 290a444216 Add fields to capture user personal information hace 6 años
caremyway Add fields to capture user personal information hace 6 años
.gitignore Initial commit hace 7 años
README.md no such table err fix hace 6 años
manage.py Set up blank project from DRF quickstart instructions hace 7 años
requirements.txt Add requirements.txt hace 7 años

README.md

CareMyWay

Development (Quickstart)

  • Ensure you have virtualenv installed pip install virtualenv
    • virtualenv --version
    • # 15.1.0
  • Ensure you have python3
    • which python3
    • # /usr/local/bin/python3
  • Setup the virtual environment with python3
    • virtualenv -p /usr/local/bin/python3 venv
  • Activate the environment, install dependencies, perform DB migration
    • source venv/bin/activate
    • pip install -r requirements.txt
    • python manage.py migrate
    • python manage.py runserver

If you get ano such table error, try: python manage.py migrate --run-syncdb