aleph_analytics 0.0.0.alpha → 0.0.1.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ROADMAP.md +1 -1
- data/config/database.yml.travis +10 -0
- data/config/example/config.yml +30 -0
- data/config/example/redshift.yml +16 -0
- data/config/example/role_hierarchy.yml +2 -0
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8882ac2cf90709d014d0227190e433df56d821f3
|
|
4
|
+
data.tar.gz: 5fbd151d80260493b94b4b59fe86e7d6a02b3e4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64fe5b4ae5dd701e020d75152eb739db9404476cc54fb98dc92975a1bfad0262fe6d4cdc5c6a066335fa0e2b203f88ad9da4ecf48150bc0c1f63d1579329bfe2
|
|
7
|
+
data.tar.gz: a75e41a4107c84c11af421bbc0848fd0949379954c7dfbfd38026c57f610853ba2b09d257a9507dc923d760f3de73feeec9ccb05616da8c8dff2218905ed34c6
|
data/ROADMAP.md
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Machine learned query hints
|
|
4
4
|
* Improvements to query authoring tools (better introspection of data)
|
|
5
5
|
* Improvements to schema wiki functionality (comments on table level, history, discussion?)
|
|
6
|
-
* UI improvements
|
|
6
|
+
* UI/UX improvements
|
|
7
7
|
* Query execution features (worker timeouts, killing a query, handle result running errors better)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
git_common: &git_common
|
|
2
|
+
github_owner: yourcompany
|
|
3
|
+
github_app_name: aleph
|
|
4
|
+
github_repo: aleph_queries
|
|
5
|
+
auth_type: database
|
|
6
|
+
|
|
7
|
+
development:
|
|
8
|
+
<<: *git_common
|
|
9
|
+
github_ref: heads/development
|
|
10
|
+
s3_bucket: aleph-development
|
|
11
|
+
s3_folder: results
|
|
12
|
+
auth_type: disabled
|
|
13
|
+
|
|
14
|
+
test:
|
|
15
|
+
<<: *git_common
|
|
16
|
+
auth_type: disabled
|
|
17
|
+
|
|
18
|
+
staging:
|
|
19
|
+
<<: *git_common
|
|
20
|
+
github_ref: heads/staging
|
|
21
|
+
s3_bucket: aleph-staging
|
|
22
|
+
s3_folder: results
|
|
23
|
+
auth_type: database
|
|
24
|
+
|
|
25
|
+
production:
|
|
26
|
+
<<: *git_common
|
|
27
|
+
github_ref: heads/production
|
|
28
|
+
s3_bucket: aleph-production
|
|
29
|
+
s3_folder: results
|
|
30
|
+
auth_type: database
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
redshift_common: &redshift_common
|
|
2
|
+
host: warehouse.pub.yourcompany.com
|
|
3
|
+
database: warehouse
|
|
4
|
+
port: '1234'
|
|
5
|
+
|
|
6
|
+
production:
|
|
7
|
+
<<: *redshift_common
|
|
8
|
+
|
|
9
|
+
staging:
|
|
10
|
+
<<: *redshift_common
|
|
11
|
+
|
|
12
|
+
test:
|
|
13
|
+
<<: *redshift_common
|
|
14
|
+
|
|
15
|
+
development:
|
|
16
|
+
<<: *redshift_common
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aleph_analytics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.1.alpha
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Xue
|
|
@@ -248,12 +248,16 @@ files:
|
|
|
248
248
|
- config/attribute-map.yml
|
|
249
249
|
- config/boot.rb
|
|
250
250
|
- config/database.yml
|
|
251
|
+
- config/database.yml.travis
|
|
251
252
|
- config/environment.rb
|
|
252
253
|
- config/environments/development.rb
|
|
253
254
|
- config/environments/playground.rb
|
|
254
255
|
- config/environments/production.rb
|
|
255
256
|
- config/environments/staging.rb
|
|
256
257
|
- config/environments/test.rb
|
|
258
|
+
- config/example/config.yml
|
|
259
|
+
- config/example/redshift.yml
|
|
260
|
+
- config/example/role_hierarchy.yml
|
|
257
261
|
- config/initializers/01_internalize_configurations.rb
|
|
258
262
|
- config/initializers/action_controller_renderers.rb
|
|
259
263
|
- config/initializers/active_model_serializer.rb
|