update default config

transfer some assets to bower
use font awesome for icons
create setup.py
create setup command to generate config
This commit is contained in:
Matthew Scragg 2014-09-17 16:13:10 -05:00
parent 6128d05c69
commit de3b2d66c3
33 changed files with 189 additions and 2645 deletions

11
realms-wiki Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
APP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APP_USER="$( stat -c '%U' ${APP_DIR} )"
CURRENT_USER=`whoami`
if [ "${CURRENT_USER}" != "${APP_USER}" ]; then
echo "Warning: Running as ${CURRENT_USER}, app dir owned by ${APP_USER}"
fi
${APP_DIR}/.venv/bin/python ${APP_DIR}/manage.py "$@"