Clone the repo:
git clone [email protected]:hermansc/django-appengine-boilerplate.git
cd to newly downladed files:
cd django-appengine-boilerplate
Run setup script:
sh setup.sh
... Wait for the script to finish. Try with sudo if it gives permission errors.
- Test that it all works by "cd src/" and "python manage.py runserver"
- Bonus: could be a good idea to create a superuser too; "python manage.py createsuperuser"
When deploying you should only deploy the src/ folder, which should contain ~3000 files.
The setup.sh script, basically just runs a bunch of commands i a series.
First, it downloads the following frameworks:
Second, it deletes docs/ extras/ scripts/ etc. from the django-nonrel installation and creates a backup of it in lib/ Same goes for the other frameworks: extract the module, create backup in lib/
In the end it just counts the total files in the src/ folder, which is to be deployed.
Feel free to fork, contribute and contact me with ideas.