2018-07-28 02:45:54 +02:00
|
|
|
superset
|
|
|
|
========
|
2018-07-28 04:51:01 +02:00
|
|
|
|
|
|
|
## Up and Running
|
|
|
|
|
|
|
|
```bash
|
2019-01-09 05:11:28 +02:00
|
|
|
$ mkdir -p -m 777 data/superset
|
|
|
|
$ wget -P data/superset https://github.com/amancevice/superset/raw/master/examples/celery/superset/superset_config.py
|
|
|
|
|
|
|
|
$ echo 'ENABLE_PROXY_FIX = True' >> data/superset/superset_config.py
|
|
|
|
$ echo 'MAPBOX_API_KEY=pk.xxxxxx.xxxxxx' > .env
|
|
|
|
|
2018-07-28 04:51:01 +02:00
|
|
|
$ docker-compose up -d
|
|
|
|
$ docker-compose exec superset superset-init
|
2019-01-09 05:11:28 +02:00
|
|
|
|
2018-07-28 04:51:01 +02:00
|
|
|
Username [admin]: admin
|
|
|
|
User first name [admin]:
|
|
|
|
User last name [user]:
|
|
|
|
Email [admin@fab.org]:
|
|
|
|
Password: ******
|
|
|
|
Repeat for confirmation: ******
|
2019-01-09 05:11:28 +02:00
|
|
|
|
|
|
|
$ curl http://localhost:8088
|
2018-07-28 04:51:01 +02:00
|
|
|
```
|
2020-04-20 06:27:35 +02:00
|
|
|
|
|
|
|
## Upgrading Guide
|
|
|
|
|
|
|
|
- <https://superset.apache.org/installation.html#upgrading>
|