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

Fixed installation dependencies, instructions #36

Merged
merged 2 commits into from
Nov 7, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ git clone git@github.com:EverythingMe/redash.git
```bash
cp rd_service/settings_example.py rd_service/settings.py
```
> It's highly recommended that the user you use to connect to the data database (the one you query) is read-only.

It's highly recommended that the user you use to connect to the data database (the one you query) is read-only.
3. Create the operational databases from rd_service/data/tables.sql
3. Install `npm` packages (mainly: Bower & Grunt):
```bash
cd rd_ui
Expand All @@ -65,7 +65,7 @@ grunt build
```
6. Install PIP packages:
```bash
pip install -r requirements.txt
pip install -r ../rd_service/requirements.txt
```
6. Start the API server:
```bash
Expand Down
6 changes: 4 additions & 2 deletions rd_ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"grunt-karma": "~0.6.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt": "git+https://github.com/gruntjs/grunt.git#08a3af5",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-coffee": "~0.7.0",
Expand All @@ -28,7 +28,9 @@
"connect-livereload": "~0.2.0",
"grunt-google-cdn": "~0.2.0",
"grunt-ngmin": "~0.0.2",
"time-grunt": "~0.1.0"
"time-grunt": "~0.1.0",
"bower": "~1.2.7",
"grunt-cli": "~0.1.9"
},
"engines": {
"node": ">=0.8.0"
Expand Down