=============================
A tool to create user-generated book covers and share on social media.
To compile SASS in an easy way install Gulp + NodeJS.
Run:
npm install
To start Gulp, which monitors and compiles SCSS to CSS run:
gulp
Now all files in _scss
are watched and the _scss/main.scss
compiles to bcg/static/css/main.css
on save.
If you want to compile the JS (all source files are in _js
) to the file scripts.min.jsz
, then run:
gulp minifyJS
virtualenv
to create a virtual environment (docs)virtualenv -p python3 .venv
source .venv/bin/activate
pip install -r requirements.txt
For image upload and handling.
Install all dependencies: pip install -r requirements.txt
Install Postgres (protip: http://postgresapp.com/)
Within psql, run: create database danandphil;
Run Django migrations to populate database: python manage.py migrate