4 | | Should include scripts to create daily/weekly snapshots of the live CD automatically. |
| 3 | = Blueprint for LiveCD = |
| 4 | A Live CD (probably based on Ubuntu) that can be used to demo and deploy a Sahana Eden instance. |
| 5 | |
| 6 | The same CD can be used to build Virtual Machines. |
| 7 | |
| 8 | We want 4 different builds: |
| 9 | * Lite |
| 10 | * Normal |
| 11 | * GIS |
| 12 | * Dev |
| 13 | |
| 14 | == Lite == |
| 15 | Designed to run headless as a simple server to be accessed by host's Web browser & perhaps 1-2 other users on a small LAN |
| 16 | * Python |
| 17 | * Rocket |
| 18 | * Sqlite |
| 19 | |
| 20 | === Build === |
| 21 | {{{ |
| 22 | bzr checkout --lightweight -r 2717 lp:~mdipierro/web2py/devel web2py |
| 23 | cd web2py/applications |
| 24 | bzr checkout --lightweight -r XXX lp:~sahana-eden eden |
| 25 | }}} |
| 26 | |
| 27 | * ConfigurationGuidelines#FilePermissions |
| 28 | |
| 29 | Run with password & NIC bound to real IP: |
| 30 | {{{ |
| 31 | python web2py.py -a <password> <etc> |
| 32 | }}} |
| 33 | === Updates === |
| 34 | Need a way to keep the system updated easily (web2page?): |
| 35 | {{{ |
| 36 | cd web2py |
| 37 | bzr up -r <revision> |
| 38 | cd applications/eden |
| 39 | bzr up -r <revision> |
| 40 | }}} |
| 41 | |
| 42 | == Normal == |
| 43 | Designed to be run in an office of up to 50 users with poor quality Internet...would be a dedicated machine if a lot of users. |
| 44 | * [wiki:InstallationGuidelinesApacheModWSGI Apache/WSGI] |
| 45 | * MySQL or [wiki:InstallationGuidelinesPostgreSQL PostgreSQL] (latter better for being common to GIS) |
| 46 | |
| 47 | == GIS == |
| 48 | Useful for the [wiki:BluePrintGISGPSSharing GPS Sharing] tool, for instance. Can run on a fairly high-end laptop or a dedicated desktop. |
| 49 | |
| 50 | * [wiki:InstallationGuidelinesGISData] |
| 51 | * [wiki:InstallationGuidelinesApacheModWSGI Apache/WSGI] |
| 52 | * PostGIS |
| 53 | * !GeoServer |
| 54 | * Mapnik |
| 55 | * DATA |
| 56 | * Download by geographic area |
| 57 | * !OpenStreetMap |
| 58 | * Contours |
| 59 | |
| 60 | == Dev == |
| 61 | This would replace our existing VM: |
| 62 | * InstallationGuidelinesVirtualMachine |
| 63 | |
| 64 | == Status == |
| 65 | [http://9while9.com Chelsea School] are building these for us based on [http://www.turnkeylinux.org TurnKey Linux] |
| 66 | |