GitXplorerGitXplorer
c

fsikasse

public
4 stars
7 forks
0 issues

Commits

List of commits on branch master.
Verified
bcff32e7b2468c4735cc0597ca199c44cf1107c8

Merge pull request #6 from FSI-CE/master

ccod3monk committed 7 years ago
Unverified
a42f3b43a0378a0bd8878ecc19af4f0d99193a6b

Hotfix

AAlexanderLieret committed 7 years ago
Unverified
6a0bc4654a2f75795cc5b99c2dce54a1d5a08103

Merge branch 'collect'

AAlexanderLieret committed 7 years ago
Unverified
a3052783c9a426f27014f4e34d714b496f43f68b

implement account check and add comment

AAlexanderLieret committed 7 years ago
Unverified
dbb7a495b74fab8e46b0cc908cb2bc263256a74b

Show comments in transaction history

AAlexanderLieret committed 7 years ago
Unverified
3bf430da9f0f550a90c91f6df44ea31c391239a2

add option to collect money from users

AAlexanderLieret committed 7 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