| | 1 | = Maintenance of the End-user = |
| | 2 | |
| | 3 | End-user Instructions: InstallationGuidelinesWindows |
| | 4 | |
| | 5 | * {{{static/scripts/tools/standalone_exe.py}}} |
| | 6 | * Clean the Eden folder (databases/errors/sessions) |
| | 7 | * rename it as 'init' |
| | 8 | * Zip-up folder contents |
| | 9 | * Customise {{{NSIS\Contrib\zip2exe\Modern.nsh}}}: |
| | 10 | {{{ |
| | 11 | !include "MUI.nsh" |
| | 12 | !define MUI_ICON "c:\bin\web2py\applications\eden\static\favicon.ico" |
| | 13 | |
| | 14 | !insertmacro MUI_PAGE_DIRECTORY |
| | 15 | !insertmacro MUI_PAGE_INSTFILES |
| | 16 | |
| | 17 | !insertmacro MUI_LANGUAGE "English" |
| | 18 | |
| | 19 | Section "install" |
| | 20 | |
| | 21 | ;Add files |
| | 22 | SetOutPath "$INSTDIR" |
| | 23 | |
| | 24 | ;create desktop shortcut |
| | 25 | CreateShortCut "$DESKTOP\Sahana Eden.lnk" "$INSTDIR\web2py.exe" "" |
| | 26 | |
| | 27 | ;create start-menu shortcut |
| | 28 | CreateShortCut "$SMPROGRAMS\Sahana Eden.lnk" "$INSTDIR\web2py.exe" |
| | 29 | |
| | 30 | SectionEnd |
| | 31 | }}} |
| | 32 | * use NSIS' {{{zip2exe.exe}}} to convert to an .exe |
| | 33 | |
| | 34 | ---- |
| | 35 | [InstallationGuidelinesWindowsPythonInstaller Developer installer] |
| | 36 | |
| | 37 | BluePrintInstallerWindows |