--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/83e916c1-cf32-4e95-83b5-1d5da686bca0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hello,
1. Clone the repo (success)
2. Install pip requirements (mention using virtualenv, but don't make it a requirement; pip install -r requirements.txt in a venv succeeded)
3. Set the SECRET_KEY environment variable (I think you shouldn't make creating secret.sh a requirement, just suggest it; setting env variables in a production environment may be very different, like editing the server's configuration files)
4. Set up your database and set the password (where? In settings.py? There's no env variable for that here, and if you don't run PgSQL locally, it is very likely you *will* have a password)
4. Run python manage.py migrate (succeeded both with SQLite3 and PostgreSQL)
All in all: works for me ☺
One suggestion: unless you do some raw SQL magic, you should not make a specific database a hard requirement. Your app seems to work well with SQLite (long time performance is a different story, though).
Best wishes!
Gergely
PS: add some tests. python manage.py test feels lonely without them 😉
--