mirror of
https://github.com/kennethreitz-archive/www.gittip.com.git
synced 2026-06-05 23:30:19 +00:00
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
python := "$(shell { command -v python2.7 || command -v python; } 2>/dev/null)"
|
|
|
|
# Set the relative path to installed binaries under the project virtualenv.
|
|
# NOTE: Creating a virtualenv on Windows places binaries in the 'Scripts' directory.
|
|
bin_dir := $(shell $(python) -c 'import sys; bin = "Scripts" if sys.platform == "win32" else "bin"; print(bin)')
|
|
env_bin := env/$(bin_dir)
|
|
|
|
env: $(env_bin)/swaddle
|
|
$(python) ./vendor/virtualenv-1.7.1.2.py \
|
|
--unzip-setuptools \
|
|
--prompt="[gittip] " \
|
|
--never-download \
|
|
--extra-search-dir=./vendor/ \
|
|
--distribute \
|
|
./env/
|
|
./$(env_bin)/pip install -r requirements.txt
|
|
./$(env_bin)/pip install ./vendor/nose-1.1.2.tar.gz
|
|
./$(env_bin)/pip install -e ./
|
|
|
|
$(env_bin)/swaddle:
|
|
$(python) ./vendor/virtualenv-1.7.1.2.py \
|
|
--unzip-setuptools \
|
|
--prompt="[gittip] " \
|
|
--never-download \
|
|
--extra-search-dir=./vendor/ \
|
|
--distribute \
|
|
./env/
|
|
./$(env_bin)/pip install -r requirements.txt
|
|
./$(env_bin)/pip install ./vendor/nose-1.1.2.tar.gz
|
|
./$(env_bin)/pip install -e ./
|
|
|
|
clean:
|
|
rm -rf env *.egg *.egg-info tests/env gittip.css
|
|
find . -name \*.pyc -delete
|
|
|
|
local.env:
|
|
echo "Creating a local.env file ..."
|
|
echo
|
|
cp default_local.env local.env
|
|
|
|
run: env local.env
|
|
./$(env_bin)/swaddle local.env ./$(env_bin)/aspen \
|
|
--www_root=www/ \
|
|
--project_root=. \
|
|
--show_tracebacks=yes \
|
|
--changes_reload=yes \
|
|
--network_address=:8537
|
|
|
|
test: env tests/env data
|
|
./$(env_bin)/swaddle tests/env ./$(env_bin)/nosetests ./tests/
|
|
|
|
tests: test
|
|
|
|
tests/env:
|
|
echo "Creating a tests/env file ..."
|
|
echo
|
|
cp default_tests.env tests/env
|
|
|
|
data: env
|
|
./makedb.sh gittip-test gittip-test
|
|
./$(env_bin)/swaddle tests/env ./$(env_bin)/python ./gittip/testing/__init__.py
|
|
|
|
css:
|
|
scss -t compressed templates/gittip.scss gittip.css
|
|
mv gittip.css www/assets/%version/gittip.css
|