├── .gitignore ├── LICENSE ├── README.md ├── css └── styles.css ├── db └── index.js ├── img ├── download.png ├── octocat.png ├── preview.png └── preview_website.png ├── index.html ├── lib ├── crypt.js ├── dlFile.js ├── status.js └── uploadFile.js ├── main.js ├── package.json ├── renderer.js └── server ├── package-lock.json ├── package.json ├── server.js ├── static ├── fancy_btn.js ├── index.html ├── octocat.png └── theme.css └── views ├── files.ejs └── partials └── file.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | files/ 3 | .env 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/README.md -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/css/styles.css -------------------------------------------------------------------------------- /db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/db/index.js -------------------------------------------------------------------------------- /img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/img/download.png -------------------------------------------------------------------------------- /img/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/img/octocat.png -------------------------------------------------------------------------------- /img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/img/preview.png -------------------------------------------------------------------------------- /img/preview_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/img/preview_website.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/index.html -------------------------------------------------------------------------------- /lib/crypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/lib/crypt.js -------------------------------------------------------------------------------- /lib/dlFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/lib/dlFile.js -------------------------------------------------------------------------------- /lib/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/lib/status.js -------------------------------------------------------------------------------- /lib/uploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/lib/uploadFile.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/package.json -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/renderer.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/package.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/server.js -------------------------------------------------------------------------------- /server/static/fancy_btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/static/fancy_btn.js -------------------------------------------------------------------------------- /server/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/static/index.html -------------------------------------------------------------------------------- /server/static/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/static/octocat.png -------------------------------------------------------------------------------- /server/static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/static/theme.css -------------------------------------------------------------------------------- /server/views/files.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/views/files.ejs -------------------------------------------------------------------------------- /server/views/partials/file.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannycho7/GitHup/HEAD/server/views/partials/file.ejs --------------------------------------------------------------------------------