Skip to content

Instantly share code, notes, and snippets.

@manuelep
Last active June 23, 2017 14:45
Show Gist options
  • Save manuelep/a0fd4c8f8bcb01e94063 to your computer and use it in GitHub Desktop.
Save manuelep/a0fd4c8f8bcb01e94063 to your computer and use it in GitHub Desktop.
get a brand new minimalist version of web2py
#!/bin/bash
git clone --recursive https://github.com/web2py/web2py.git web2py_temp
cd web2py_temp
git checkout tags/R-2.11.2
git submodule update --init --recursive
python scripts/make_min_web2py.py ../web2py
mv applications/admin ../web2py/applications/
cd ../
rm -rf web2py_temp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment