This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# (c) 2011 Raphael Jasjukaitis <[email protected]> | |
import csv | |
import os | |
import sys | |
from optparse import OptionParser |
This file contains 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 | |
# Creates a new Django project using my boilerplate | |
# Requires virtualenvwrapper and pip | |
source virtualenvwrapper.sh | |
# Create a new virtualenv if none other is active | |
if [ "$VIRTUAL_ENV" == "" ]; then | |
echo "Creating virtualenv... Name?" | |
read venvname | |
mkvirtualenv --no-site-packages $venvname | |
workon $venvname |
This file contains 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
[buildout] | |
parts = instance | |
extends = http://dist.plone.org/release/4.2-latest/versions.cfg | |
[instance] | |
recipe = plone.recipe.zope2instance | |
http-address = 8080 | |
user = admin:admin | |
eggs = Plone |
This file contains 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 | |
if [ -z $1 ] | |
then | |
echo Insert directory name: | |
read dirname | |
else | |
dirname=$1 | |
fi | |
echo Creating a new Plone project in $dirname... | |
mkdir $dirname |
This file contains 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 | |
# Inits a project made with the django-cms-boilerplate | |
# Requires virtualenvwrapper and pip | |
# Create virtualenv if no active | |
if [ "$VIRTUAL_ENV" == "" ]; then | |
echo "Creating virtualenv... Name?" | |
read venvname | |
source virtualenvwrapper.sh | |
mkvirtualenv --no-site-packages $venvname | |
workon $venvname |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am jasjukaitis on github. | |
* I am rjasjukaitis (https://keybase.io/rjasjukaitis) on keybase. | |
* I have a public key whose fingerprint is EA75 4439 10A0 E5A5 E149 2C44 65FD AFE4 5EB5 7146 | |
To claim this, I am signing this object: |