Skip to content

Commit

Permalink
websockets working with phoenix channel on MainTable created hook, se…
Browse files Browse the repository at this point in the history
…nding payload from websockets to vuex, added environment variable example files
  • Loading branch information
thewolfpack committed Nov 6, 2017
1 parent 5527d37 commit e64263b
Show file tree
Hide file tree
Showing 12 changed files with 407 additions and 1,145 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ yarn-error.log*
test/unit/coverage
test/e2e/reports
selenium-debug.log
config/dev.env.js
config/prod.env.js
config/test.env.js

# Editor directories and files
.idea
Expand Down
3 changes: 2 additions & 1 deletion config/dev.env.js → config/dev.env.js.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ var merge = require('webpack-merge')
var prodEnv = require('./prod.env')

module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
NODE_ENV: '"development"',
API_URL: '"<http:://YOUR API SERVER>"'
})
3 changes: 0 additions & 3 deletions config/prod.env.js

This file was deleted.

4 changes: 4 additions & 0 deletions config/prod.env.js.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
NODE_ENV: '"production"',
API_URL: '"<http:://YOUR API SERVER>"'
}
Loading

0 comments on commit e64263b

Please sign in to comment.