changes I'm making to settings.py:
TIME_ZONE = 'America/Winnipeg'
"ENGINE": "django.db.backends.sqlite3", (this should be a better db, but
one thing at a time...)
Uncommenting lines 319-333, which consist of the following (different from
your tutorial):
319 FABRIC = {
320 "SSH_USER": "", # SSH username for host deploying to
321 "HOSTS": ALLOWED_HOSTS[:1], # List of hosts to deploy to (eg, first
host)
322 "DOMAINS": ALLOWED_HOSTS, # Domains for public site
323 "REPO_URL": "ssh://[email protected]/user/project", # Project's repo
URL
324 "VIRTUALENV_HOME": "", # Absolute remote path for virtualenvs
325 "PROJECT_NAME": "", # Unique identifier for project
326 "REQUIREMENTS_PATH": "requirements.txt", # Project's pip
requirements
327 "GUNICORN_PORT": 8000, # Port gunicorn will listen on
328 "LOCALE": "en_US.UTF-8", # Should end with ".UTF-8"
329 "DB_PASS": "", # Live database password
330 "ADMIN_PASS": "", # Live admin user password
331 "SECRET_KEY": SECRET_KEY,
332 "NEVERCACHE_KEY": NEVERCACHE_KEY,
333 }
I am not modifying these yet, but when I do fab all later, it will say that
the keys have not been defined.
--
You received this message because you are subscribed to the Google Groups
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.