Django: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 22: | Zeile 22: | ||
* Install Databases | * Install Databases | ||
~/.environments/<PROJEKT>env/bin/pip install -r requirements.txt | ~/.environments/<PROJEKT>env/bin/pip install -r requirements.txt | ||
+ | |||
+ | ==Internationalization== | ||
+ | * Create or update message files: | ||
+ | ** django-admin.py makemessages -l de | ||
==Hosting== | ==Hosting== |
Version vom 30. Juni 2013, 15:39 Uhr
Django - a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
Aptana Configuration
- Win-Preferences->PyDev->Editor->Code Completeion: Apply completion on '.' and '('
Tutorials
Style Guides
Configure with PyCharm
Collaborative
- Migrate on change of requirements.txt, e.g. new tables are added.
- <ENV> manage.py migrate
- Install Databases
~/.environments/<PROJEKT>env/bin/pip install -r requirements.txt
Internationalization
- Create or update message files:
- django-admin.py makemessages -l de