Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zenaptix-lab/wellthi_client

Wealthy client app
https://github.com/zenaptix-lab/wellthi_client

Last synced: about 2 months ago
JSON representation

Wealthy client app

Awesome Lists containing this project

README

        

# wellthi_client
Wellthi client app

First install virtual env on machine :
```
$ sudo pip2 install virtualenv
```

To initialize python virtual environment run :
```
$ virtualenv -p /usr/bin/python2.7 .../wellthi_client/venv
```

To activate virtual environment run :
```
$ source .../wellthi_client/venv/bin/activate
```

Flask setup after init in virtual env :
```
$ pip install -r requirements.txt
$ FLASK_APP=wellthi.py flask run --host=0.0.0.0
```

For demo purposes :
```
$ docker build -t wellthi_client .
$ docker run -it -p 5000:5000 wellthi_client:latest
```