Skip to content
Snippets Groups Projects
Commit 5f99cf53 authored by Richard Torenvliet's avatar Richard Torenvliet
Browse files

Remove specific references

parent 3f505dbe
No related branches found
No related tags found
No related merge requests found
......@@ -15,3 +15,5 @@
/libpeerconnection.log
npm-debug.log
testem.log
makefile
.idea/
......@@ -6,6 +6,7 @@ const Router = Ember.Router.extend({
});
Router.map(function() {
this.route('index', { path: '/' });
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) {
};
if (environment === 'development') {
ENV.APP.websocketsURL = 'ws://localhost:6930/reconstruction';
ENV.APP.staticURL = 'http://localhost:6930/data/';
ENV.APP.APIURL = 'http://localhost:6930';
ENV.APP.websocketsURL = '';
ENV.APP.staticURL = '';
ENV.APP.APIURL = '';
// ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true;
......@@ -47,9 +47,9 @@ module.exports = function(environment) {
}
if (environment === 'production') {
ENV.APP.websocketsURL = 'wss://richard.kompiler.org/reconstruction';
ENV.APP.staticURL = 'https://richard.kompiler.org/data/';
ENV.APP.APIURL = 'https://richard.kompiler.org';
ENV.APP.websocketsURL = '';
ENV.APP.staticURL = ';
ENV.APP.APIURL = '';
ENV.baseURL = '/face-reconstruction/';
ENV.rootURL = '/face-reconstruction/';
}
......
......@@ -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/border/index.css');
//app.import('bower_components/basscss/modules/flexbox/index.css');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment