Update README.md

Reduced installation steps. Using PyPi installation for adapter now
This commit is contained in:
apurva-sigmoid 2021-09-29 16:57:53 +05:30 committed by GitHub
parent 45c5072649
commit 5ed17c7a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 12 deletions

View File

@ -164,20 +164,12 @@ $ git clone https://github.com/raghavSharmaSigmoid/superset.git
$ cd superset
$ git checkout firebolt-integration
# 2. Run below commands to clone firebolt adapter into superset folder
$ cd superset
$ git clone https://github.com/raghavSharmaSigmoid/firebolt-sqlalchemy.git
# 3. Run below commands to build the firebolt adapter
$ cd firebolt-sqlalchemy
$ python3 -m build
# 4. Run below commands to create local requirements text file which has firebolt adapter path
$ cd $HOME/superset
# 2. Run below commands to create local requirements text file which has firebolt adapter path
$ touch ./docker/requirements-local.txt
$ echo "firebolt-sqlalchemy@file://localhost/app/superset/firebolt-sqlalchemy/dist/firebolt-sqlalchemy-0.0.1.tar.gz#egg=firebolt-sqlalchemy" >> ./docker/requirements-local.txt
$ echo "firebolt-sqlalchemy" >> ./docker/requirements-local.txt
# 5. Run below command to start docker
# 3. Run below command to build and start docker
$ docker-compose build --force-rm
$ docker-compose up
````