django-recipes 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/readme.markdown +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1.0.0
|
data/readme.markdown
CHANGED
|
@@ -16,7 +16,7 @@ Django Recipes is a set of capistrano recipes created to automate deployment of
|
|
|
16
16
|
deploy:vhost # Creates a vhost for your application and uploads it
|
|
17
17
|
deploy:web:disable # Disable the website
|
|
18
18
|
deploy:web:enable # Enables the website
|
|
19
|
-
django:
|
|
19
|
+
django:manage # runs a command from manage.py ie cap django:manage command=syncdb
|
|
20
20
|
|
|
21
21
|
# How it Works
|
|
22
22
|
Capistrano uses ssh to connect to your server and create a directory structure. It uses this directory structure:
|