├── .gitignore ├── Gruntfile.js ├── LICENSE.txt ├── Procfile ├── README.md ├── bower.json ├── docs └── architecture-high-level.pdf ├── elements ├── corner-ribbon │ ├── corner-ribbon.html │ └── style.css ├── x-app │ ├── style.css │ ├── x-app.html │ └── x-app.js ├── x-favorited-list │ ├── style.css │ ├── x-favorited-list.html │ └── x-favorited-list.js ├── x-iconset │ └── x-iconset.html ├── x-project-card-grid │ ├── style.css │ ├── x-project-card-grid.html │ └── x-project-card-grid.js ├── x-project-card │ ├── style.css │ ├── x-project-card.html │ └── x-project-card.js ├── x-project-service │ ├── x-project-service.html │ └── x-project-service.js ├── x-tribe-service │ └── x-tribe-service.html └── x-user-service │ └── x-user-service.html ├── images ├── crown.svg ├── curved-arrow-up.svg ├── favicon.png ├── favicon.svg ├── screenshot1.png └── skull.svg ├── nonvulcanized.html ├── package.json ├── server.js ├── settings.js ├── updater.js └── upstart ├── server.upstart └── updater.upstart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/bower.json -------------------------------------------------------------------------------- /docs/architecture-high-level.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/docs/architecture-high-level.pdf -------------------------------------------------------------------------------- /elements/corner-ribbon/corner-ribbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/corner-ribbon/corner-ribbon.html -------------------------------------------------------------------------------- /elements/corner-ribbon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/corner-ribbon/style.css -------------------------------------------------------------------------------- /elements/x-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-app/style.css -------------------------------------------------------------------------------- /elements/x-app/x-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-app/x-app.html -------------------------------------------------------------------------------- /elements/x-app/x-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-app/x-app.js -------------------------------------------------------------------------------- /elements/x-favorited-list/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-favorited-list/style.css -------------------------------------------------------------------------------- /elements/x-favorited-list/x-favorited-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-favorited-list/x-favorited-list.html -------------------------------------------------------------------------------- /elements/x-favorited-list/x-favorited-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-favorited-list/x-favorited-list.js -------------------------------------------------------------------------------- /elements/x-iconset/x-iconset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-iconset/x-iconset.html -------------------------------------------------------------------------------- /elements/x-project-card-grid/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-card-grid/style.css -------------------------------------------------------------------------------- /elements/x-project-card-grid/x-project-card-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-card-grid/x-project-card-grid.html -------------------------------------------------------------------------------- /elements/x-project-card-grid/x-project-card-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-card-grid/x-project-card-grid.js -------------------------------------------------------------------------------- /elements/x-project-card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-card/style.css -------------------------------------------------------------------------------- /elements/x-project-card/x-project-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-card/x-project-card.html -------------------------------------------------------------------------------- /elements/x-project-card/x-project-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-card/x-project-card.js -------------------------------------------------------------------------------- /elements/x-project-service/x-project-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-service/x-project-service.html -------------------------------------------------------------------------------- /elements/x-project-service/x-project-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-project-service/x-project-service.js -------------------------------------------------------------------------------- /elements/x-tribe-service/x-tribe-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-tribe-service/x-tribe-service.html -------------------------------------------------------------------------------- /elements/x-user-service/x-user-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/elements/x-user-service/x-user-service.html -------------------------------------------------------------------------------- /images/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/images/crown.svg -------------------------------------------------------------------------------- /images/curved-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/images/curved-arrow-up.svg -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/images/favicon.svg -------------------------------------------------------------------------------- /images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/images/screenshot1.png -------------------------------------------------------------------------------- /images/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/images/skull.svg -------------------------------------------------------------------------------- /nonvulcanized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/nonvulcanized.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/server.js -------------------------------------------------------------------------------- /settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/settings.js -------------------------------------------------------------------------------- /updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/updater.js -------------------------------------------------------------------------------- /upstart/server.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/upstart/server.upstart -------------------------------------------------------------------------------- /upstart/updater.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurice/futurice-super/HEAD/upstart/updater.upstart --------------------------------------------------------------------------------