Last active
May 27, 2022 05:38
-
-
Save deepak365/3316270abce892370414bee232f31551 to your computer and use it in GitHub Desktop.
How to install redash in mac.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What is redash? | |
Redash is database viewer included BI tool inside. Redash has support for querying multiple databases, including: Redshift, Google BigQuery, PostgreSQL, MySQL, Graphite, Presto, Google Spreadsheets, Cloudera Impala, Hive and custom scripts. | |
Prerequisite : | |
1. Install docker | |
2. Install git | |
git clone https://github.com/getredash/redash.git | |
docker-compose -f docker-compose.production.yml run --rm server create_db | |
docker-compose -f docker-compose.production.yml up | |
visit http://0.0.0.0:5000 |
Try docker-compose -f docker-compose.yml run --rm server create_db
The instruction didn't work for me. What I did tonight to get it working:
Download the latest release from https://github.com/getredash/redash/releases
cd redash
npm install
npm run build
docker-compose -f docker-compose.yml run --rm server create_db
docker-compose -f docker-compose.yml up
Then open 0.0.0.0:5000
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you guys link to the commit you ran this against? I'm getting this error.
Or if I run it without the production ref -
docker-compose -f docker-compose.yml run --rm server create_db
- I get an npm install error.Thanks!