pdonorio / angulask

A project to template flask web server to meet angularjs
0 stars 0 forks source link
outdated

Angulask

A project to template flask web server to meet angularjs

 Getting started

# Clone
git clone https://github.com/pdonorio/angulask.git
# Run (in debug mode)
cd angulask/containers
docker-compose up flask

Then go visit http://localhost to access the web page

 Configuration and defaults

To use your personal directory of JSON files configuration go edit PATH inside config/__init__.py, e.g.

PATH = 'MYCONFIGURATION'

Config is located in config/MYCONFIGURATION.

Default account:

Bower configuration

To download required js and css libaries via bower:

cd angulask/containers
docker-compose up -d bower
docker-compose run bower "npm install && bower install"
docker-compose stop