Skip to content

Instantly share code, notes, and snippets.

@l34marr
Created June 25, 2014 07:30
Show Gist options
  • Save l34marr/06cd4a0b18b34ac7a115 to your computer and use it in GitHub Desktop.
Save l34marr/06cd4a0b18b34ac7a115 to your computer and use it in GitHub Desktop.
Scripts for running a custom Plone install on Codio
#!/bin/sh
# This assumes you installed Plone on Nitrous.io using these instructions
# http://blog.dbain.com/2013/07/plone-quickstart-on-cloud-in-less-than.html
# download this file and run it with the following command
# sh plone-builddev.sh
echo "running buildout with default buildout.cfg"
~/plone433/zinstance/bin/buildout -c ~/plone433/zinstance/develop.cfg
#!/bin/sh
# This assumes you installed Plone on Nitrous.io using these instructions
# http://blog.dbain.com/2013/07/plone-quickstart-on-cloud-in-less-than.html
# download this file and run it with the following command
# this shows the activites on client1 (useful for debugging)
# sh plone-debug.sh
tmux select-window -t plone:2
tmux -2 attach-session -t plone
#!/bin/sh
# This assumes you installed Plone on Nitrous.io using these instructions
# http://blog.dbain.com/2013/07/plone-quickstart-on-cloud-in-less-than.html
# download this file and run it with the following command
# sh plone-start.sh
tmux new-session -d -s plone
tmux new-window -t plone:1 -n 'fg' '~/plone433/zinstance/bin/plonectl fg'
tmux select-window -t plone:1
tmux -1 attach-session -t plone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment