Hi,
I am following the tutorial Creating a new Django project on PythonAnywhere, but for the command below, from my console, got the following error:
*$ python ./manage.py syncdb
Unknown command: 'synced'
Type 'manage.py help' for usage.*
I noticed in the late part of the tutorial, there is one section for Setup the database in settings.py, and synced
Is the error caused because I have not setup my database properly? Here is the DB Section from my settings.py:
# Database # https://docs.djangoproject.com/en/1.10/ref/settings/#databases
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } }
Please help
Thanks