Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/zenaptix-lab/wellthi_client
- Owner: zenaptix-lab
- License: apache-2.0
- Created: 2018-10-31T14:33:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:16:32.000Z (about 2 years ago)
- Last Synced: 2023-03-03T22:32:12.280Z (almost 2 years ago)
- Language: JavaScript
- Size: 18.7 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wellthi_client
Wellthi client appFirst 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
```