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
Day job: Software Developer and Security Expert | |
Favorite Python project: FABRIC | |
Favorite Conference: Pycon 2011 | |
Python Experience Level: Intermediate |
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
" Vim color file | |
" | |
" Author: Douglas Morato <[email protected]> | |
" | |
" Note: | |
" Based on the monokai theme for vim and textmate. | |
" Based on the darkmate theme orm vim by YearOfMoo Matias Niemelä <[email protected]> | |
" | |
" Based on the FRUITY theme by Armin Ronacher <[email protected]> |
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
Sphinx 2.0.1-id64-beta (r2792) | |
Copyright (c) 2001-2011, Andrew Aksyonoff | |
Copyright (c) 2008-2011, Sphinx Technologies Inc (http://sphinxsearch.com) | |
Usage: search [OPTIONS] <word1 [word2 [word3 [...]]]> | |
Options are: | |
-c, --config <file> use given config file instead of defaults | |
-i, --index <index> search given index only (default: all indexes) | |
-a, --any match any query word (default: match all words) |
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
# | |
# Sphinx configuration file sample | |
# | |
# Please refer to doc/sphinx.html for details. | |
# | |
############################################################################# | |
## data source definition | |
############################################################################# |
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
""" | |
This fabric file makes setting up and deploying a django application much | |
easier, but it does make a few assumptions. Namely that you're using Git, | |
Apache and mod_wsgi and your using Debian or Ubuntu. Also you should have | |
Django installed on your local machine and SSH installed on both the local | |
machine and any servers you want to deploy to. | |
_note that I've used the name project_name throughout this example. Replace | |
this with whatever your project is called._ |
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
from fabric.api import * | |
""" | |
Base configuration | |
""" | |
env.project_name = '$(project)' | |
env.database_password = '$(db_password)' | |
env.site_media_prefix = "site_media" | |
env.admin_media_prefix = "admin_media" | |
env.newsapps_media_prefix = "na_media" |
NewerOlder