25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Tanner Collin 290a444216 Add fields to capture user personal information 6 yıl önce
caremyway Add fields to capture user personal information 6 yıl önce
.gitignore Initial commit 7 yıl önce
README.md no such table err fix 6 yıl önce
manage.py Set up blank project from DRF quickstart instructions 7 yıl önce
requirements.txt Add requirements.txt 7 yıl önce

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