Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Updated connection string for Firebolt #17242

Merged
merged 17 commits into from
Oct 29, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Update README.md"
This reverts commit 5ed17c7.
apurva-sigmoid committed Sep 29, 2021
commit acee35200ad0c7bda15bc07db2b92770dd3e5885
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -164,12 +164,20 @@ $ git clone https://github.com/raghavSharmaSigmoid/superset.git
$ cd superset
$ git checkout firebolt-integration

# 2. Run below commands to create local requirements text file which has firebolt adapter path
# 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
$ touch ./docker/requirements-local.txt
$ echo "firebolt-sqlalchemy" >> ./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

# 3. Run below command to build and start docker
$ docker-compose build --force-rm
# 5. Run below command to start docker
$ docker-compose up
````