File tree Expand file tree Collapse file tree 4 files changed +36
-4
lines changed
Expand file tree Collapse file tree 4 files changed +36
-4
lines changed Original file line number Diff line number Diff line change 1+ # Fabric
2+
3+ [ Fabric] [ 1 ] is a "simple pythonic deployment tool".
4+ All it requires is it's installation and a fabfile.py.
5+
6+ A sample fabfile.py might look like this:
7+
8+ config.fab_hosts=['my_app.net']
9+ config.fab_key_filename='C:\Programme\putty\id_dsa.ppk'
10+ config.remote_app_dir='~/code/my_app'
11+
12+ def deploy():
13+ """Deploy my_app."""
14+ local('hg push')
15+ run('cd $(remote_app_dir); hg up')
16+ run('cd $(remote_app_dir); cp production_settings.py local_settings.py')
17+ run('cd $(remote_app_dir); touch my_app.wsgi')
18+
19+ To run it enter the following into your shell:
20+
21+ fab deploy
22+
23+
24+ [ 1 ] : http://www.nongnu.org/fab " Fabric "
Original file line number Diff line number Diff line change 1- # Django User Group Hamburg repository
1+ # Django User Group Hamburg (DUGHH) Repository
2+
3+ Here you find talks, pictures, code snippets etc. grouped by date.
4+
5+ Have fun browsing.
6+
7+ # Find DUGHH folks on twitter
8+
9+ [Here][1] you find all tweets tagged with "#dughh".
10+
11+ [1]: http://search.twitter.com/search?q=#dughh "Twitter Search Results for #dughh"
212
313## Submodules
414
5- Um Submodules auch zu bekommen im Hauptverzeichnis die Befehle :
15+ For submodules in the main directory execute :
616
717 git submodule init
818 git submodule update
9-
10- ausführen.
You can’t perform that action at this time.
0 commit comments