├── Dockerrun.aws.json ├── README.md ├── compiler ├── .dockerignore ├── Dockerfile ├── app.js ├── bootstrap.min.css ├── index.html └── myCss.css ├── gl-dep └── Dockerfile └── pictures ├── compiler.png └── demo.gif /Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/Dockerrun.aws.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/README.md -------------------------------------------------------------------------------- /compiler/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /compiler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/compiler/Dockerfile -------------------------------------------------------------------------------- /compiler/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/compiler/app.js -------------------------------------------------------------------------------- /compiler/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/compiler/bootstrap.min.css -------------------------------------------------------------------------------- /compiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/compiler/index.html -------------------------------------------------------------------------------- /compiler/myCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/compiler/myCss.css -------------------------------------------------------------------------------- /gl-dep/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/gl-dep/Dockerfile -------------------------------------------------------------------------------- /pictures/compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/pictures/compiler.png -------------------------------------------------------------------------------- /pictures/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseer2426/Compiler-REST-API/HEAD/pictures/demo.gif --------------------------------------------------------------------------------