Commit 5f99cf53 authored by Richard Torenvliet's avatar Richard Torenvliet

Remove specific references

parent 3f505dbe
...@@ -15,3 +15,5 @@ ...@@ -15,3 +15,5 @@
/libpeerconnection.log /libpeerconnection.log
npm-debug.log npm-debug.log
testem.log testem.log
makefile
.idea/
...@@ -6,6 +6,7 @@ const Router = Ember.Router.extend({ ...@@ -6,6 +6,7 @@ const Router = Ember.Router.extend({
}); });
Router.map(function() { Router.map(function() {
this.route('index', { path: '/' });
this.route('reconstruction'); this.route('reconstruction');
}); });
......
<div class="clearfix mxn2">
<div class="col-8 px2 mx-auto">
<div class="white p4">
{{#link-to "reconstruction" class="btn white bg-silver border p4 py2"}}
<i class="fa fa-terminal" aria-hidden="true"></i> Reconstruction
{{/link-to}}
</div>
</div>
</div>
{{outlet}}
...@@ -23,9 +23,9 @@ module.exports = function(environment) { ...@@ -23,9 +23,9 @@ module.exports = function(environment) {
}; };
if (environment === 'development') { if (environment === 'development') {
ENV.APP.websocketsURL = 'ws://localhost:6930/reconstruction'; ENV.APP.websocketsURL = '';
ENV.APP.staticURL = 'http://localhost:6930/data/'; ENV.APP.staticURL = '';
ENV.APP.APIURL = 'http://localhost:6930'; ENV.APP.APIURL = '';
// ENV.APP.LOG_RESOLVER = true; // ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true; // ENV.APP.LOG_ACTIVE_GENERATION = true;
...@@ -47,9 +47,9 @@ module.exports = function(environment) { ...@@ -47,9 +47,9 @@ module.exports = function(environment) {
} }
if (environment === 'production') { if (environment === 'production') {
ENV.APP.websocketsURL = 'wss://richard.kompiler.org/reconstruction'; ENV.APP.websocketsURL = '';
ENV.APP.staticURL = 'https://richard.kompiler.org/data/'; ENV.APP.staticURL = ';
ENV.APP.APIURL = 'https://richard.kompiler.org'; ENV.APP.APIURL = '';
ENV.baseURL = '/face-reconstruction/'; ENV.baseURL = '/face-reconstruction/';
ENV.rootURL = '/face-reconstruction/'; ENV.rootURL = '/face-reconstruction/';
} }
......
...@@ -16,7 +16,8 @@ module.exports = function(defaults) { ...@@ -16,7 +16,8 @@ module.exports = function(defaults) {
} }
}); });
// bower compoenents // bower components
// TODO: fix loading bascss locally instead of including it in the index.html.
//app.import('bower_components/basscss/modules/align/index.css'); //app.import('bower_components/basscss/modules/align/index.css');
//app.import('bower_components/basscss/modules/border/index.css'); //app.import('bower_components/basscss/modules/border/index.css');
//app.import('bower_components/basscss/modules/flexbox/index.css'); //app.import('bower_components/basscss/modules/flexbox/index.css');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment