Created
June 25, 2014 07:30
-
-
Save l34marr/06cd4a0b18b34ac7a115 to your computer and use it in GitHub Desktop.
Scripts for running a custom Plone install on Codio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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