├── .gitignore ├── .htaccess ├── client ├── assets │ ├── KittyAvatar │ │ ├── partlist.txt │ │ ├── body_1.png │ │ ├── body_2.png │ │ ├── body_3.png │ │ ├── body_4.png │ │ ├── body_5.png │ │ ├── body_6.png │ │ ├── body_7.png │ │ ├── body_8.png │ │ ├── body_9.png │ │ ├── eyes_1.png │ │ ├── eyes_2.png │ │ ├── eyes_3.png │ │ ├── eyes_4.png │ │ ├── eyes_5.png │ │ ├── eyes_6.png │ │ ├── eyes_7.png │ │ ├── eyes_8.png │ │ ├── eyes_9.png │ │ ├── fur_1.png │ │ ├── fur_10.png │ │ ├── fur_2.png │ │ ├── fur_3.png │ │ ├── fur_4.png │ │ ├── fur_5.png │ │ ├── fur_6.png │ │ ├── fur_7.png │ │ ├── fur_8.png │ │ ├── fur_9.png │ │ ├── body_10.png │ │ ├── body_11.png │ │ ├── body_12.png │ │ ├── body_13.png │ │ ├── body_14.png │ │ ├── body_15.png │ │ ├── eyes_10.png │ │ ├── eyes_11.png │ │ ├── eyes_12.png │ │ ├── eyes_13.png │ │ ├── eyes_14.png │ │ ├── eyes_15.png │ │ ├── mouth_1.png │ │ ├── mouth_10.png │ │ ├── mouth_2.png │ │ ├── mouth_3.png │ │ ├── mouth_4.png │ │ ├── mouth_5.png │ │ ├── mouth_6.png │ │ ├── mouth_7.png │ │ ├── mouth_8.png │ │ ├── mouth_9.png │ │ ├── accessorie_1.png │ │ ├── accessorie_10.png │ │ ├── accessorie_11.png │ │ ├── accessorie_12.png │ │ ├── accessorie_13.png │ │ ├── accessorie_14.png │ │ ├── accessorie_15.png │ │ ├── accessorie_16.png │ │ ├── accessorie_17.png │ │ ├── accessorie_18.png │ │ ├── accessorie_19.png │ │ ├── accessorie_2.png │ │ ├── accessorie_20.png │ │ ├── accessorie_3.png │ │ ├── accessorie_4.png │ │ ├── accessorie_5.png │ │ ├── accessorie_6.png │ │ ├── accessorie_7.png │ │ ├── accessorie_8.png │ │ └── accessorie_9.png │ ├── favicon.ico │ ├── substrate-logo.png │ └── main.css ├── static │ ├── media │ │ ├── flags.99f63ae7a743f21ab308.png │ │ ├── icons.425399f81e4ce7cbd967.woff │ │ ├── icons.a01e3f2d6c83dc3aee17.eot │ │ ├── icons.c656b8caa454ed19b9a2.ttf │ │ ├── icons.38c6d8bab26db77d8c80.woff2 │ │ ├── brand-icons.65a2fb6d9aaa164b41a0.ttf │ │ ├── brand-icons.d68fa3e67dbb653a13ce.eot │ │ ├── brand-icons.278156e41e0ad908cf7f.woff2 │ │ ├── brand-icons.cac87dc00c87a5d74711.woff │ │ ├── outline-icons.5367103510b27b784827.ttf │ │ ├── outline-icons.752905fa5edf21fc52a1.eot │ │ ├── outline-icons.ddae9b1ba9b0b42f5880.woff │ │ ├── outline-icons.687a4990ea22bb1a49d4.woff2 │ │ ├── index.f2b6f7ffc9a430272d20.cjs │ │ └── outline-icons.9c4845b4b41ef40a22fa.svg │ └── js │ │ └── main.ea6e0eef.js.LICENSE.txt ├── manifest.json ├── index.html └── asset-manifest.json ├── app.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteRule ^(.*) http://127.0.0.1:2001/$1 [P] -------------------------------------------------------------------------------- /client/assets/KittyAvatar/partlist.txt: -------------------------------------------------------------------------------- 1 | body 2 | fur 3 | eyes 4 | mouth 5 | accessorie 6 | -------------------------------------------------------------------------------- /client/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/favicon.ico -------------------------------------------------------------------------------- /client/assets/substrate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/substrate-logo.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/fur_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_11.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_12.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_13.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_14.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/body_15.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_11.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_12.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_13.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_14.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/eyes_15.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/mouth_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_11.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_12.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_13.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_14.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_15.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_16.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_17.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_18.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_19.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_20.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/assets/KittyAvatar/accessorie_9.png -------------------------------------------------------------------------------- /client/static/media/flags.99f63ae7a743f21ab308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/flags.99f63ae7a743f21ab308.png -------------------------------------------------------------------------------- /client/static/media/icons.425399f81e4ce7cbd967.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/icons.425399f81e4ce7cbd967.woff -------------------------------------------------------------------------------- /client/static/media/icons.a01e3f2d6c83dc3aee17.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/icons.a01e3f2d6c83dc3aee17.eot -------------------------------------------------------------------------------- /client/static/media/icons.c656b8caa454ed19b9a2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/icons.c656b8caa454ed19b9a2.ttf -------------------------------------------------------------------------------- /client/static/media/icons.38c6d8bab26db77d8c80.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/icons.38c6d8bab26db77d8c80.woff2 -------------------------------------------------------------------------------- /client/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf -------------------------------------------------------------------------------- /client/static/media/brand-icons.d68fa3e67dbb653a13ce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/brand-icons.d68fa3e67dbb653a13ce.eot -------------------------------------------------------------------------------- /client/static/media/brand-icons.278156e41e0ad908cf7f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/brand-icons.278156e41e0ad908cf7f.woff2 -------------------------------------------------------------------------------- /client/static/media/brand-icons.cac87dc00c87a5d74711.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/brand-icons.cac87dc00c87a5d74711.woff -------------------------------------------------------------------------------- /client/static/media/outline-icons.5367103510b27b784827.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/outline-icons.5367103510b27b784827.ttf -------------------------------------------------------------------------------- /client/static/media/outline-icons.752905fa5edf21fc52a1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/outline-icons.752905fa5edf21fc52a1.eot -------------------------------------------------------------------------------- /client/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff -------------------------------------------------------------------------------- /client/static/media/outline-icons.687a4990ea22bb1a49d4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/HEAD/client/static/media/outline-icons.687a4990ea22bb1a49d4.woff2 -------------------------------------------------------------------------------- /client/assets/main.css: -------------------------------------------------------------------------------- 1 | .github-fork-ribbon.right-bottom:before { 2 | background-color: #666; 3 | } 4 | 5 | .ui.statistic.block_number > .value { 6 | font-size: 2.4rem !important; 7 | line-height: 4rem !important; 8 | } 9 | -------------------------------------------------------------------------------- /client/static/media/index.f2b6f7ffc9a430272d20.cjs: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),require("./detectPackage.cjs");var _bundle=require("./bundle.cjs");Object.keys(_bundle).forEach((function(e){"default"!==e&&"__esModule"!==e&&(e in exports&&exports[e]===_bundle[e]||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _bundle[e]}}))})); -------------------------------------------------------------------------------- /client/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Substrate Front End", 3 | "name": "Substrate Front End Template", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 48x48 32x32 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const path = require("path") 3 | const bodyParser = require('body-parser') 4 | const cors = require('cors') 5 | const http = require("http") 6 | 7 | const app = express() 8 | const server = http.Server(app) 9 | 10 | app.use(cors()) 11 | app.use(express.static(__dirname + '/client')) 12 | app.use(bodyParser.json({ limit: "15360mb", type: 'application/json' })) 13 | app.use(bodyParser.urlencoded({ extended: true })) 14 | 15 | app.get('*', (req, res) => { res.sendFile(path.join(__dirname, 'client/index.html')) }) 16 | 17 | server.listen(8000, () => {console.log(`Started server on => http://localhost:${8000}`)}) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "template-backend", 3 | "version": "1.0.0", 4 | "description": "template-backend", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/SOLAR-STORM-GAMING/template-backend.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/SOLAR-STORM-GAMING/template-backend/issues" 17 | }, 18 | "homepage": "https://github.com/SOLAR-STORM-GAMING/template-backend#readme", 19 | "dependencies": { 20 | "body-parser": "^1.19.0", 21 | "cors": "^2.8.5", 22 | "express": "^4.17.1", 23 | "http": "0.0.1-security", 24 | "path": "^0.12.7" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- 1 | Substrate Front End Template
Fork me on GitHub -------------------------------------------------------------------------------- /client/static/js/main.ea6e0eef.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /* 2 | object-assign 3 | (c) Sindre Sorhus 4 | @license MIT 5 | */ 6 | 7 | /*! 8 | Copyright (c) 2015 Jed Watson. 9 | Based on code that is Copyright 2013-2015, Facebook, Inc. 10 | All rights reserved. 11 | */ 12 | 13 | /*! 14 | * The buffer module from node.js, for the browser. 15 | * 16 | * @author Feross Aboukhadijeh 17 | * @license MIT 18 | */ 19 | 20 | /*! 21 | * The buffer module from node.js, for the browser. 22 | * 23 | * @author Feross Aboukhadijeh 24 | * @license MIT 25 | */ 26 | 27 | /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ 28 | 29 | /*! noble-secp256k1 - MIT License (c) 2019 Paul Miller (paulmillr.com) */ 30 | 31 | /*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */ 32 | 33 | /** @license React v0.20.2 34 | * scheduler.production.min.js 35 | * 36 | * Copyright (c) Facebook, Inc. and its affiliates. 37 | * 38 | * This source code is licensed under the MIT license found in the 39 | * LICENSE file in the root directory of this source tree. 40 | */ 41 | 42 | /** @license React v16.13.1 43 | * react-is.production.min.js 44 | * 45 | * Copyright (c) Facebook, Inc. and its affiliates. 46 | * 47 | * This source code is licensed under the MIT license found in the 48 | * LICENSE file in the root directory of this source tree. 49 | */ 50 | 51 | /** @license React v17.0.2 52 | * react-dom.production.min.js 53 | * 54 | * Copyright (c) Facebook, Inc. and its affiliates. 55 | * 56 | * This source code is licensed under the MIT license found in the 57 | * LICENSE file in the root directory of this source tree. 58 | */ 59 | 60 | /** @license React v17.0.2 61 | * react-jsx-runtime.production.min.js 62 | * 63 | * Copyright (c) Facebook, Inc. and its affiliates. 64 | * 65 | * This source code is licensed under the MIT license found in the 66 | * LICENSE file in the root directory of this source tree. 67 | */ 68 | 69 | /** @license React v17.0.2 70 | * react.production.min.js 71 | * 72 | * Copyright (c) Facebook, Inc. and its affiliates. 73 | * 74 | * This source code is licensed under the MIT license found in the 75 | * LICENSE file in the root directory of this source tree. 76 | */ 77 | -------------------------------------------------------------------------------- /client/asset-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": { 3 | "main.css": "/substrate-front-end-template/static/css/main.8ddb3f2f.css", 4 | "main.js": "/substrate-front-end-template/static/js/main.ea6e0eef.js", 5 | "static/media/brand-icons.svg": "/substrate-front-end-template/static/media/brand-icons.6729d29753e000c17489.svg", 6 | "static/media/icons.svg": "/substrate-front-end-template/static/media/icons.62d9dae4e0040e81c980.svg", 7 | "static/media/outline-icons.svg": "/substrate-front-end-template/static/media/outline-icons.9c4845b4b41ef40a22fa.svg", 8 | "static/media/icons.eot": "/substrate-front-end-template/static/media/icons.a01e3f2d6c83dc3aee17.eot", 9 | "static/media/icons.ttf": "/substrate-front-end-template/static/media/icons.c656b8caa454ed19b9a2.ttf", 10 | "static/media/brand-icons.eot": "/substrate-front-end-template/static/media/brand-icons.d68fa3e67dbb653a13ce.eot", 11 | "static/media/brand-icons.ttf": "/substrate-front-end-template/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf", 12 | "static/media/brand-icons.woff": "/substrate-front-end-template/static/media/brand-icons.cac87dc00c87a5d74711.woff", 13 | "static/media/brand-icons.woff2": "/substrate-front-end-template/static/media/brand-icons.278156e41e0ad908cf7f.woff2", 14 | "static/media/icons.woff": "/substrate-front-end-template/static/media/icons.425399f81e4ce7cbd967.woff", 15 | "static/media/icons.woff2": "/substrate-front-end-template/static/media/icons.38c6d8bab26db77d8c80.woff2", 16 | "static/media/outline-icons.eot": "/substrate-front-end-template/static/media/outline-icons.752905fa5edf21fc52a1.eot", 17 | "static/media/outline-icons.ttf": "/substrate-front-end-template/static/media/outline-icons.5367103510b27b784827.ttf", 18 | "static/media/flags.png": "/substrate-front-end-template/static/media/flags.99f63ae7a743f21ab308.png", 19 | "static/media/outline-icons.woff": "/substrate-front-end-template/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff", 20 | "static/media/outline-icons.woff2": "/substrate-front-end-template/static/media/outline-icons.687a4990ea22bb1a49d4.woff2", 21 | "index.html": "/substrate-front-end-template/index.html", 22 | "static/media/index.cjs": "/substrate-front-end-template/static/media/index.f2b6f7ffc9a430272d20.cjs", 23 | "main.8ddb3f2f.css.map": "/substrate-front-end-template/static/css/main.8ddb3f2f.css.map", 24 | "main.ea6e0eef.js.map": "/substrate-front-end-template/static/js/main.ea6e0eef.js.map" 25 | }, 26 | "entrypoints": [ 27 | "static/css/main.8ddb3f2f.css", 28 | "static/js/main.ea6e0eef.js" 29 | ] 30 | } -------------------------------------------------------------------------------- /client/static/media/outline-icons.9c4845b4b41ef40a22fa.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 19 | 22 | 25 | 28 | 31 | 34 | 37 | 40 | 43 | 46 | 49 | 52 | 55 | 58 | 61 | 64 | 67 | 70 | 73 | 76 | 79 | 82 | 85 | 88 | 91 | 94 | 97 | 100 | 103 | 106 | 109 | 112 | 115 | 118 | 121 | 124 | 127 | 130 | 133 | 136 | 139 | 142 | 145 | 148 | 151 | 154 | 157 | 160 | 163 | 166 | 169 | 172 | 175 | 178 | 181 | 184 | 187 | 190 | 193 | 196 | 199 | 202 | 205 | 208 | 211 | 214 | 217 | 220 | 223 | 226 | 229 | 232 | 235 | 238 | 241 | 244 | 247 | 250 | 253 | 256 | 259 | 262 | 265 | 268 | 271 | 274 | 277 | 280 | 283 | 286 | 289 | 292 | 295 | 298 | 301 | 304 | 307 | 310 | 313 | 316 | 319 | 322 | 325 | 328 | 331 | 334 | 337 | 340 | 343 | 346 | 349 | 352 | 355 | 358 | 361 | 364 | 365 | 366 | 367 | --------------------------------------------------------------------------------