├── .gitignore ├── LICENSE ├── README.md ├── client-firebase ├── browser.js ├── browser.js.map ├── firebase.js ├── index.html ├── index.js ├── package.json ├── sandbox.config.json └── style.css ├── client ├── Dockerfile ├── browser.js ├── browser.js.map ├── index.html ├── index.js └── style.css ├── docker-compose.yml └── server ├── Dockerfile ├── bin └── www ├── default-config.json ├── package-lock.json ├── package.json ├── scripts ├── run-tests.sh └── wait ├── sequelize └── migrations │ ├── 20190519184323-create-authentication.js │ └── 20190520071525-users.js └── src ├── apiHelpers.js ├── app.js ├── config.js ├── migrationManager.js ├── models ├── authentication.js ├── index.js └── user.js └── routes ├── authentication.js └── user.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/README.md -------------------------------------------------------------------------------- /client-firebase/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/browser.js -------------------------------------------------------------------------------- /client-firebase/browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/browser.js.map -------------------------------------------------------------------------------- /client-firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/firebase.js -------------------------------------------------------------------------------- /client-firebase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/index.html -------------------------------------------------------------------------------- /client-firebase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/index.js -------------------------------------------------------------------------------- /client-firebase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/package.json -------------------------------------------------------------------------------- /client-firebase/sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "static" 3 | } 4 | -------------------------------------------------------------------------------- /client-firebase/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client-firebase/style.css -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client/browser.js -------------------------------------------------------------------------------- /client/browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client/browser.js.map -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client/index.html -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client/index.js -------------------------------------------------------------------------------- /client/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/client/style.css -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/bin/www -------------------------------------------------------------------------------- /server/default-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/default-config.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/package.json -------------------------------------------------------------------------------- /server/scripts/run-tests.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm run lint -------------------------------------------------------------------------------- /server/scripts/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/scripts/wait -------------------------------------------------------------------------------- /server/sequelize/migrations/20190519184323-create-authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/sequelize/migrations/20190519184323-create-authentication.js -------------------------------------------------------------------------------- /server/sequelize/migrations/20190520071525-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/sequelize/migrations/20190520071525-users.js -------------------------------------------------------------------------------- /server/src/apiHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/apiHelpers.js -------------------------------------------------------------------------------- /server/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/app.js -------------------------------------------------------------------------------- /server/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/config.js -------------------------------------------------------------------------------- /server/src/migrationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/migrationManager.js -------------------------------------------------------------------------------- /server/src/models/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/models/authentication.js -------------------------------------------------------------------------------- /server/src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/models/index.js -------------------------------------------------------------------------------- /server/src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/models/user.js -------------------------------------------------------------------------------- /server/src/routes/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/routes/authentication.js -------------------------------------------------------------------------------- /server/src/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudiusProject/hedgehog-demo/HEAD/server/src/routes/user.js --------------------------------------------------------------------------------