Skip to content

Commit 47e5b22

Browse files
committed
working code
1 parent 0fedb5a commit 47e5b22

File tree

5 files changed

+255
-668
lines changed

5 files changed

+255
-668
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
11
# sqlalchemy-parseable
2-
A DBAPI and SQLAlchemy dialect for Parseable
2+
3+
A DBAPI and SQLAlchemy dialect for Parseable.
4+
5+
## Getting Started on local machine.
6+
7+
- Install superset, initalise parseable connector and configure superset.
8+
9+
## Install Superset
10+
11+
- Make sure ```Python 3.11.6``` is installed.
12+
13+
```
14+
python3 -m venv venv
15+
. venv/bin/activate
16+
pip install apache-superset
17+
export SUPERSET_SECRET_KEY=YOUR-SECRET-KEY
18+
export FLASK_APP=superset
19+
superset db upgrade
20+
superset fab create-admin
21+
superset init
22+
```
23+
24+
- Initalise parseable connector.
25+
26+
```
27+
cd sqlalchemy-parseable
28+
pip install -e .
29+
```
30+
31+
- Run superset.
32+
33+
```
34+
superset run -p 8088 --with-threads --reload --debugger
35+
```

0 commit comments

Comments
 (0)