close
Warning:
Can't synchronize with repository "(default)" (/usr/svn/silverfile does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jun 10, 2009, 11:11:08 PM (14 years ago)
- Author:
-
hank
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v11
|
v12
|
|
29 | 29 | |
30 | 30 | |
31 | | === OpenSSL === |
32 | | ==== Installation ==== |
| 31 | === VIA Padlock and OpenSSL === |
| 32 | ==== Openssl Installation ==== |
33 | 33 | {{{ |
34 | 34 | sudo apt-get install openssl |
35 | 35 | }}} |
36 | 36 | |
37 | | ==== Verification ==== |
| 37 | ==== Padlock Verification ==== |
38 | 38 | Next, verify engine: |
39 | 39 | {{{ |
… |
… |
|
68 | 68 | }}} |
69 | 69 | |
70 | | === GnuPG / Duplicity === |
71 | | |
72 | | {{{ |
73 | | > sudo apt-get install duplicity python-boto |
| 70 | === Install Duplicity / S3tools === |
| 71 | |
| 72 | Duplicity is our preferred backup method. Install s3tools for |
| 73 | {{{ |
| 74 | > sudo apt-get install duplicity python-boto s3cmd |
| 75 | }}} |
| 76 | |
| 77 | === Install Mercurial === |
| 78 | Mercurial is installed for syncing latest app source. |
| 79 | |
| 80 | {{{ |
| 81 | > sudo apt-get install mercurial |
| 82 | |
| 83 | }}} |
| 84 | |
| 85 | === Install Django === |
| 86 | The platform for our app. |
| 87 | |
| 88 | {{{ |
| 89 | > sudo apt-get install python-django |
74 | 90 | }}} |
75 | 91 | |