https://github.com/noooway/wander
Mobile apps analytics dashboard constructed with Flask and Plotly
https://github.com/noooway/wander
Last synced: about 1 month ago
JSON representation
Mobile apps analytics dashboard constructed with Flask and Plotly
- Host: GitHub
- URL: https://github.com/noooway/wander
- Owner: noooway
- License: mit
- Created: 2019-11-16T16:00:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-25T18:35:32.000Z (about 6 years ago)
- Last Synced: 2025-01-27T12:48:59.435Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 60.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wander
Mobile app analytics dashboard
Installation:
``` shell
git clone https://github.com/noooway/wander
cd wander
pip3 install -r requirements.txt
sqlite3 data_sources_example/regs_pur.db < data_sources_example/regs_purchases.sql
mkdir instance
sqlite3 instance/wander.sqlite < wander/schema.sql
```
For testing, start server with:
``` shell
flask run
```
Visit [localhost:5000](http://localhost:5000) in a browser.
To make the server visible to outside world:
``` shell
flask run --host='0.0.0.0' --port='5000'
```
Run using `gunicorn`:
``` shell
gunicorn -w 4 --bind 0.0.0.0:5000 wander.wsgi:app
```