Skip to main content

Web application defaults

Project description

Posts form the foundation for most of our web applications.

Use

Prepare environment.

export VIRTUAL_ENV=~/.virtualenvs/crosscompute
virtualenv ${VIRTUAL_ENV}
source ${VIRTUAL_ENV}/bin/activate

export NODE_PATH=${VIRTUAL_ENV}/lib/node_modules
npm install -g browserify uglify-js

Install package.

PYTHON_PACKAGE_FOLDER=~/Projects/invisibleroads-packages/posts
NODE_PACKAGE_FOLDER=${PYTHON_PACKAGE_FOLDER}/node_modules/invisibleroads-posts

cd ~/Projects
git clone git@github.com:invisibleroads/invisibleroads-posts.git

cd ${PYTHON_PACKAGE_FOLDER}
python setup.py develop

cd ${NODE_PACKAGE_FOLDER}
npm install -g

Create project.

cd ~/Projects
pcreate -s posts xyz

Install project.

cd ~/Projects/xyz
python setup.py develop

Launch development server.

mkdir -p xyz/assets
bash refresh.sh -d
pserve development.ini

Launch production server.

mkdir -p xyz/assets
bash refresh.sh
pserve production.ini

Recreate

Use starter scaffold.

cd ~/Experiments
pcreate -s starter invisibleroads-posts
SOURCE_FOLDER=~/Projects/invisibleroads-posts
TARGET_FOLDER=~/Experiments/invisibleroads-posts

Add .gitignore.

wget https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore -O ${TARGET_FOLDER}/.gitignore
vimdiff ${TARGET_FOLDER}/.gitignore ${SOURCE_FOLDER}/.gitignore

Update configuration files.

vimdiff ${TARGET_FOLDER}/MANIFEST.in ${SOURCE_FOLDER}/MANIFEST.in

mv ${TARGET_FOLDER}/CHANGES.{txt,rst}
vimdiff ${TARGET_FOLDER}/CHANGES.rst ${SOURCE_FOLDER}/CHANGES.rst

mv ${TARGET_FOLDER}/README.{txt,rst}
vimdiff ${TARGET_FOLDER}/README.rst ${SOURCE_FOLDER}/README.rst

vimdiff ${TARGET_FOLDER}/development.ini ${SOURCE_FOLDER}/development.ini
vimdiff ${TARGET_FOLDER}/production.ini ${SOURCE_FOLDER}/production.ini

vimdiff ${TARGET_FOLDER}/setup.py ${SOURCE_FOLDER}/setup.py

Update package files.

vimdiff \
    ${TARGET_FOLDER}/invisibleroads_posts/__init__.py \
    ${SOURCE_FOLDER}/invisibleroads_posts/__init__.py
vimdiff ${TARGET_FOLDER}/invisibleroads_posts/views.py ${SOURCE_FOLDER}/invisibleroads_posts/views.py
rm ${TARGET_FOLDER}/invisibleroads_posts/tests.py

Prepare templates.

TEMPLATES_FOLDER=${TARGET_FOLDER}/invisibleroads_posts/templates
rm ${TARGET_FOLDER}/invisibleroads_posts/templates/*
mkdir ${TEMPLATES_FOLDER}
cp ${SOURCE_FOLDER}/invisibleroads_posts/templates/* ${TEMPLATES_FOLDER}
vim ${TEMPLATES_FOLDER}/base.jinja2
vim ${TEMPLATES_FOLDER}/posts.jinja2

Prepare assets.

ASSETS_FOLDER=${TARGET_FOLDER}/invisibleroads_posts/assets
rm ${TARGET_FOLDER}/invisibleroads_posts/static/*
mv ${TARGET_FOLDER}/invisibleroads_posts/static ${ASSETS_FOLDER}
cp ${SOURCE_FOLDER}/invisibleroads_posts/assets/favicon.ico ${ASSETS_FOLDER}
cp ${SOURCE_FOLDER}/invisibleroads_posts/assets/robots.txt ${ASSETS_FOLDER}
cp ${SOURCE_FOLDER}/invisibleroads_posts/assets/whoops.html ${ASSETS_FOLDER}
cd ${TARGET_FOLDER}
bash refresh.sh

Add Bootstrap.

BOOTSTRAP_VERSION=3.3.6
cd ~/Documents
wget https://github.com/twbs/bootstrap/releases/download/v$BOOTSTRAP_VERSION/bootstrap-$BOOTSTRAP_VERSION-dist.zip
unzip bootstrap-${BOOTSTRAP_VERSION}-dist.zip
cd ~/Documents/bootstrap-${BOOTSTRAP_VERSION}-dist
mkdir -p ${ASSETS_FOLDER}/bootstrap/css
mkdir -p ${ASSETS_FOLDER}/bootstrap/js
cp css/bootstrap.min.css ${ASSETS_FOLDER}/bootstrap/css
cp js/bootstrap.min.js ${ASSETS_FOLDER}/bootstrap/js

Add JQuery.

JQUERY_VERSION=1.12.2
cd ${ASSETS_FOLDER}
wget http://code.jquery.com/jquery-${JQUERY_VERSION}.min.js -O jquery.min.js

0.4

  • Add page_description

  • Add render_confirmation_modal

0.3

  • Add extensible command line script

0.2

  • Replace mako with jinja2

0.1

  • Add posts scaffold

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

invisibleroads-posts-0.4.8.tar.gz (142.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page