├── .babelrc ├── .gitignore ├── README copy.md ├── README.md ├── client ├── App.js ├── assets │ ├── 123.jpg │ ├── SQL Database (to make your own).png │ └── fb-login.png ├── components │ ├── Challenge.js │ ├── CollectCWUsername.js │ ├── Player.js │ ├── ScoreBoard.js │ └── UserInfo.js ├── containers │ ├── LoginContainer.js │ ├── MainContainer.js │ ├── NavContainer.js │ └── fbAuthorize.js ├── fbScript.js ├── index.html ├── index.js └── styles.scss ├── docs └── pull_request_template.md ├── package.json ├── rootCA.key ├── rootCA.pem ├── rootCA.srl ├── server.crt ├── server.csr ├── server.csr.cnf ├── server.key ├── server ├── controllers │ ├── codewarsController.js │ └── userController.js ├── models │ └── csWarsModels.js ├── routes │ └── userRouter.js └── server.js ├── v3.ext └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /README copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/README copy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/README.md -------------------------------------------------------------------------------- /client/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/App.js -------------------------------------------------------------------------------- /client/assets/123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/assets/123.jpg -------------------------------------------------------------------------------- /client/assets/SQL Database (to make your own).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/assets/SQL Database (to make your own).png -------------------------------------------------------------------------------- /client/assets/fb-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/assets/fb-login.png -------------------------------------------------------------------------------- /client/components/Challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/components/Challenge.js -------------------------------------------------------------------------------- /client/components/CollectCWUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/components/CollectCWUsername.js -------------------------------------------------------------------------------- /client/components/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/components/Player.js -------------------------------------------------------------------------------- /client/components/ScoreBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/components/ScoreBoard.js -------------------------------------------------------------------------------- /client/components/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/components/UserInfo.js -------------------------------------------------------------------------------- /client/containers/LoginContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/containers/LoginContainer.js -------------------------------------------------------------------------------- /client/containers/MainContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/containers/MainContainer.js -------------------------------------------------------------------------------- /client/containers/NavContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/containers/NavContainer.js -------------------------------------------------------------------------------- /client/containers/fbAuthorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/containers/fbAuthorize.js -------------------------------------------------------------------------------- /client/fbScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/fbScript.js -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/index.html -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/index.js -------------------------------------------------------------------------------- /client/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/client/styles.scss -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/package.json -------------------------------------------------------------------------------- /rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/rootCA.key -------------------------------------------------------------------------------- /rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/rootCA.pem -------------------------------------------------------------------------------- /rootCA.srl: -------------------------------------------------------------------------------- 1 | 8B9BF6AA83B76508 2 | -------------------------------------------------------------------------------- /server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server.crt -------------------------------------------------------------------------------- /server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server.csr -------------------------------------------------------------------------------- /server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server.csr.cnf -------------------------------------------------------------------------------- /server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server.key -------------------------------------------------------------------------------- /server/controllers/codewarsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server/controllers/codewarsController.js -------------------------------------------------------------------------------- /server/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server/controllers/userController.js -------------------------------------------------------------------------------- /server/models/csWarsModels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server/models/csWarsModels.js -------------------------------------------------------------------------------- /server/routes/userRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server/routes/userRouter.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/server/server.js -------------------------------------------------------------------------------- /v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/v3.ext -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JTrap-LLC/cs-wars/HEAD/webpack.config.js --------------------------------------------------------------------------------