Skip to content
Open
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
8 changes: 7 additions & 1 deletion .ember-cli → .ember-cli.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
'use strict';

process.env.EMBER_CLI_MODULE_UNIFICATION = true;
process.env.EMBER_CLI_BROCCOLI_2 = true;
process.env.EMBER_CLI_SYSTEM_TEMP = true;

module.exports = {
/**
Ember CLI sends analytics information by default. The data is completely
anonymous, but there are times when you might want to disable this behavior.
Expand Down
12 changes: 11 additions & 1 deletion config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,17 @@ module.exports = function(environment) {
APP: {
// Here you can pass flags/options to your application instance
// when it is created
}
apiUrl: 'http://localhost:4200'
},
torii: {
providers: {
'github-oauth2': {
clientId: '964e63d77496f2307e70',
scope: '',
redirectUri: 'http://localhost:4200/torii/redirect.html'
}
}
}
};

if (environment === 'development') {
Expand Down
5 changes: 5 additions & 0 deletions config/optional-features.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"application-template-wrapper": false,
"jquery-integration": false,
"template-only-glimmer-components": true
}
Loading