Skip to content

Commit 730d32f

Browse files
committed
merged brackis pull request
2 parents 7e4d8c1 + ae265aa commit 730d32f

File tree

4 files changed

+36
-4
lines changed

4 files changed

+36
-4
lines changed

20090512/fabric/README.mkd

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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"

20090512/fabric/one.jpg

20.3 KB
Loading

20090512/fabric/two.jpg

29.7 KB
Loading

README.mdowm

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
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.

0 commit comments

Comments
 (0)