aleph_analytics 0.0.0.alpha → 0.0.1.alpha

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 68e23db8db887e5f2dec2b4eaaceedf57be59172
4
- data.tar.gz: d9bb6150398c23e4e8853c7346347d30e7f17cef
3
+ metadata.gz: 8882ac2cf90709d014d0227190e433df56d821f3
4
+ data.tar.gz: 5fbd151d80260493b94b4b59fe86e7d6a02b3e4a
5
5
  SHA512:
6
- metadata.gz: da90881eba92ec26ad435005a44d0ee2d7746d480034b2740d8ad73bf855d342877ad91eed82a8eac379e5a5697a91f938131fb4bd57188d3f0c4770a4e5d512
7
- data.tar.gz: 9c804cb43f1b62da0b453df157e43deb9d0dc0dd0ea3462f8a89a294956a3becc3d85f27a0e0186c705b85f257b275030208eda2b7eb0988ad0d5a3931646dcf
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,10 @@
1
+ ssa_common: &ssa_common
2
+ adapter: postgresql
3
+ encoding: utf8
4
+ host: localhost
5
+ pool: 5
6
+ username: postgres
7
+
8
+ test:
9
+ <<: *ssa_common
10
+ database: aleph_test
@@ -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
@@ -0,0 +1,2 @@
1
+ general:
2
+ - admin
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.0.alpha
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