wiki:InstallationGuidelines/Windows/Maintenance

Version 15 (modified by Fran Boon, 14 years ago) ( diff )

--

Maintenance of the End-user Windows Installer

End-user Instructions: InstallationGuidelinesWindows

  • Clean the Eden folder (databases/errors/sessions/uploads)
  • Clean the admin folder (sessions)
    c:
    cd \bin\web2py
    copy applications\eden\static\scripts\tools\standalone_exe.py .
    c:\bin\python26\python standalone_exe.py py2exe
    
  • Remove unwanted folders from dist/applications/eden
    • .bzr
    • .git
    • docs
    • static/selenium
  • rename eden as 'init'
  • Delete the examples & welcome folders
  • Rename 'dist' folder as 'web2py'
  • Move this 'web2py' folder to c:\
  • Zip-up contents of this 'webp2y' folder
  • Customise C:\Program Files\NSIS\Contrib\zip2exe\Modern.nsh:
    !include "MUI.nsh"
    !define MUI_ICON "c:\web2py\applications\init\static\favicon.ico"
    
    !insertmacro MUI_PAGE_DIRECTORY
    !insertmacro MUI_PAGE_INSTFILES
    
    !insertmacro MUI_LANGUAGE "English"
    
    Section "install"
     
        ;Add files
        SetOutPath "$INSTDIR"
    
        ;create desktop shortcut
        CreateShortCut "$DESKTOP\Sahana Eden.lnk" "$INSTDIR\web2py.exe" ""
     
        ;create start-menu shortcut
        CreateShortCut "$SMPROGRAMS\Sahana Eden.lnk" "$INSTDIR\web2py.exe"
    
    SectionEnd
    
  • use NSIS' zip2exe.exe to convert to an .exe
    • Installer Name: Sahana Eden 0.5.3
    • Default Folder: (PATH OF INSTALLER)
    • Output EXE file: C:\Sahana-Eden-0.5.3.exe

Developer installer

BluePrintInstallerWindows

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.