Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
py-3d-face-reconstruction-viewer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
py-3d-face-reconstruction-viewer
Commits
5f99cf53
Commit
5f99cf53
authored
Jan 14, 2018
by
Richard Torenvliet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove specific references
parent
3f505dbe
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
7 deletions
+22
-7
.gitignore
.gitignore
+2
-0
app/router.js
app/router.js
+1
-0
app/templates/index.hbs
app/templates/index.hbs
+11
-0
config/environment.js
config/environment.js
+6
-6
ember-cli-build.js
ember-cli-build.js
+2
-1
No files found.
.gitignore
View file @
5f99cf53
...
@@ -15,3 +15,5 @@
...
@@ -15,3 +15,5 @@
/libpeerconnection.log
/libpeerconnection.log
npm-debug.log
npm-debug.log
testem.log
testem.log
makefile
.idea/
app/router.js
View file @
5f99cf53
...
@@ -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
'
);
});
});
...
...
app/templates/index.hbs
0 → 100644
View file @
5f99cf53
<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
}}
config/environment.js
View file @
5f99cf53
...
@@ -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
/
'
;
}
}
...
...
ember-cli-build.js
View file @
5f99cf53
...
@@ -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');
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment