GitXplorerGitXplorer
c

fsikasse

public
4 stars
7 forks
0 issues

Commits

List of commits on branch master.
Unverified
6fe7f0c5ca50ed50e965fe600336ac7f123bcb34

sort user by number of recent purchases

AAlexanderLieret committed 7 years ago
Unverified
763904f3413141f528a5bf50d227974fb4c258b9

make product name two-line

AAlexanderLieret committed 7 years ago
Unverified
b1fdc7d35b753a61e4ef671f87ae468192fca50c

Merge remote-tracking branch 'origin/dynamic_layout'

AAlexanderLieret committed 7 years ago
Unverified
463a7fb68012e4fd93180564046f09680faf9fb1

some improvements

AAlexanderLieret committed 7 years ago
Unverified
6611a072896971474f80c15e4469856491edf4da

stylesheet adapted for variable window size

committed 9 years ago
Unverified
dd42ec9b8eca196dbd1afa3845e24d985fe5829a

run css-comb to reformat style.css

committed 9 years ago

README

The README file for this repository.

FSI-Kasse

Description

...

Installation

Install Flask

Have a look at the installation instructions at the Flask website. The most important steps are listed here.

On MacOS X or GNU/Linux, run one of the following:

$ sudo pip install virtualenv

or

$ sudo easy_install virtualenv

On Ubuntu, you can use

$ sudo apt-get install python-virtualenv

Get and activate the latest flask version:

$ git clone http://github.com/mitsuhiko/flask.git
Cloning into 'flask'...
...
$ cd flask
$ virtualenv venv --distribute
New python executable in venv/bin/python
Installing distribute............done.
$ . venv/bin/activate
$ python setup.py develop
...
Finished processing dependencies for Flask

Dependencies

Install Pillow

$ pip install Pillow

Install FSI-Kasse

Download and extract fsikasse or clone the git repository.

To initialize the database, run in the fsikasse-directory

$ flask --app=fsikasse initdb 

And start the app with

$ flask --app=fsikasse run                

From now on, it is sufficient to run in the flask-directory

$ . venv/bin/activate

and then start the app in the fsikasse-directory with

$ flask --app=fsikasse run