Initial main commit.
authorSebastien Douheret <sebastien.douheret@iot.bzh>
Thu, 11 May 2017 17:42:00 +0000 (19:42 +0200)
committerSebastien Douheret <sebastien.douheret@iot.bzh>
Thu, 11 May 2017 17:42:22 +0000 (19:42 +0200)
commitec7051e1da665206f594c7616ad381bfeaea333a
treeecc01ee358794c9d8c5fbb87d2f5b6ce3f60f431
parentca3e1762832b27dc25cf90125b376c56e24e2db2
Initial main commit.

Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
59 files changed:
.gitignore [new file with mode: 0644]
.vscode/launch.json [new file with mode: 0644]
.vscode/settings.json [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.md [new file with mode: 0644]
config.json.in [new file with mode: 0644]
glide.yaml [new file with mode: 0644]
lib/apiv1/apiv1.go [new file with mode: 0644]
lib/apiv1/config.go [new file with mode: 0644]
lib/apiv1/exec.go [new file with mode: 0644]
lib/apiv1/folders.go [new file with mode: 0644]
lib/apiv1/make.go [new file with mode: 0644]
lib/apiv1/version.go [new file with mode: 0644]
lib/common/error.go [new file with mode: 0644]
lib/common/execPipeWs.go [new file with mode: 0644]
lib/common/httpclient.go [new file with mode: 0644]
lib/session/session.go [new file with mode: 0644]
lib/syncthing/st.go [new file with mode: 0644]
lib/syncthing/stfolder.go [new file with mode: 0644]
lib/xdsconfig/builderconfig.go [new file with mode: 0644]
lib/xdsconfig/config.go [new file with mode: 0644]
lib/xdsconfig/fileconfig.go [new file with mode: 0644]
lib/xdsconfig/folderconfig.go [new file with mode: 0644]
lib/xdsconfig/foldersconfig.go [new file with mode: 0644]
lib/xdsserver/server.go [new file with mode: 0644]
main.go [new file with mode: 0644]
webapp/README.md [new file with mode: 0644]
webapp/assets/favicon.ico [new file with mode: 0644]
webapp/assets/images/iot-graphx.jpg [new file with mode: 0644]
webapp/bs-config.json [new file with mode: 0644]
webapp/gulp.conf.js [new file with mode: 0644]
webapp/gulpfile.js [new file with mode: 0644]
webapp/package.json [new file with mode: 0644]
webapp/src/app/alert/alert.component.ts [new file with mode: 0644]
webapp/src/app/app.component.css [new file with mode: 0644]
webapp/src/app/app.component.html [new file with mode: 0644]
webapp/src/app/app.component.ts [new file with mode: 0644]
webapp/src/app/app.module.ts [new file with mode: 0644]
webapp/src/app/app.routing.ts [new file with mode: 0644]
webapp/src/app/build/build.component.css [new file with mode: 0644]
webapp/src/app/build/build.component.html [new file with mode: 0644]
webapp/src/app/build/build.component.ts [new file with mode: 0644]
webapp/src/app/common/alert.service.ts [new file with mode: 0644]
webapp/src/app/common/config.service.ts [new file with mode: 0644]
webapp/src/app/common/syncthing.service.ts [new file with mode: 0644]
webapp/src/app/common/xdsserver.service.ts [new file with mode: 0644]
webapp/src/app/config/config.component.css [new file with mode: 0644]
webapp/src/app/config/config.component.html [new file with mode: 0644]
webapp/src/app/config/config.component.ts [new file with mode: 0644]
webapp/src/app/home/home.component.ts [new file with mode: 0644]
webapp/src/app/main.ts [new file with mode: 0644]
webapp/src/app/projects/projectCard.component.ts [new file with mode: 0644]
webapp/src/app/projects/projectsListAccordion.component.ts [new file with mode: 0644]
webapp/src/index.html [new file with mode: 0644]
webapp/src/systemjs.config.js [new file with mode: 0644]
webapp/tsconfig.json [new file with mode: 0644]
webapp/tslint.json [new file with mode: 0644]
webapp/tslint.prod.json [new file with mode: 0644]
webapp/typings.json [new file with mode: 0644]