Go to file
Joachim Lusiardi adf51c85f2 Merge branch 'development' into 'master'
Development

Fixes:
 * wrong date preselected when creation a pitstop
 * creation of new vehicle

See merge request !26
2016-07-29 21:50:52 +02:00
app Merge branch '9-creation-of-new-vehicle-fails' into 'development' 2016-07-29 21:12:30 +02:00
compose_config added demo config 2016-05-26 13:54:51 +02:00
database_upgrades fixed SQL Error with MySQL 5.7.12 2016-07-17 10:03:56 +02:00
.gitignore introduces modules 2016-04-23 23:08:39 +02:00
Dockerfile Fixed project structure for pycharm 2016-07-03 19:29:30 +02:00
README.md Update README.md 2016-07-17 10:06:19 +02:00
config.py fixed DB URL 2016-07-17 10:02:41 +02:00
create_icons.sh introduces modules 2016-04-23 23:08:39 +02:00
docker-compose.yml added demo config 2016-05-26 13:54:51 +02:00
icon_orig.png tuned apple icon 2015-03-22 11:02:59 +01:00
main.py Fixed project structure for pycharm 2016-07-03 19:29:30 +02:00
requirements.txt Fixed project structure for pycharm 2016-07-03 19:29:30 +02:00

README.md

How to build & run

build

docker build --tag=$(basename $PWD) .

general configuration

Look at app/config/email.py.example* for the configuration of the parameters required for sending emails. Copy the file as email.py to a folder that will serve as configuration directory and fill in the information. The directory will be used as volume during container operation.

start database

docker run --name pitstops_db -e MYSQL_ROOT_PASSWORD=$SOMESECUREPASSWORD$ -e MYSQL_DATABASE=pitstops -d mysql:latest

Database migrations

From Cathrine to Master:

ALTER TABLE pitstop ADD COLUMN costs DECIMAL(5,2) NOT NULL DEFAULT 0.0 AFTER vehicle_id;

run in development

Include the development version of the code as volume, so the app gets reloaded automatically. The sqlite file will be stored in tmp so it can be inspected with tools like sqlite3. The switch DEBUG enables debugging during development.

docker run --rm --name rollerverbrauch -ti -v $PWD/app:/app --link pitstops_db:database -p 5000:5000 -e SECURITY_PASSWORD_SALT=XXX -e SECRET_KEY=XXX -e MAIL_SERVER=XXX -e MAIL_USERNAME=XXX -e MAIL_PASSWORD=XXX rollerverbrauch

run in production

docker run --name pitstops -tid -e PROXY_DATA=server_names:ps.lusiardi.de,port:5000 --link pitstops_db:database -e SECURITY_PASSWORD_SALT=XXX -e SECRET_KEY=XXX -e MAIL_SERVER=XXX -e MAIL_USERNAME=XXX -e MAIL_PASSWORD=XXX rollerverbrauch:catherine