├── README.md ├── nodeJS ├── .gitignore ├── Dockerfile ├── README.md ├── captures │ ├── Auth.png │ ├── Home.png │ ├── Home2.png │ ├── Login.png │ └── icon.png ├── docker-compose.yml ├── envEXAMPLE ├── error.ejs ├── home.ejs ├── index.ejs ├── package-lock.json ├── package.json └── server.js └── resources ├── README.md ├── diagrama.png └── piñaSabe.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/README.md -------------------------------------------------------------------------------- /nodeJS/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /nodeJS/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/Dockerfile -------------------------------------------------------------------------------- /nodeJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/README.md -------------------------------------------------------------------------------- /nodeJS/captures/Auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/captures/Auth.png -------------------------------------------------------------------------------- /nodeJS/captures/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/captures/Home.png -------------------------------------------------------------------------------- /nodeJS/captures/Home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/captures/Home2.png -------------------------------------------------------------------------------- /nodeJS/captures/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/captures/Login.png -------------------------------------------------------------------------------- /nodeJS/captures/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/captures/icon.png -------------------------------------------------------------------------------- /nodeJS/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/docker-compose.yml -------------------------------------------------------------------------------- /nodeJS/envEXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/envEXAMPLE -------------------------------------------------------------------------------- /nodeJS/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/error.ejs -------------------------------------------------------------------------------- /nodeJS/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/home.ejs -------------------------------------------------------------------------------- /nodeJS/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/index.ejs -------------------------------------------------------------------------------- /nodeJS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/package-lock.json -------------------------------------------------------------------------------- /nodeJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/package.json -------------------------------------------------------------------------------- /nodeJS/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/nodeJS/server.js -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- 1 | # RESOURCES 2 | -------------------------------------------------------------------------------- /resources/diagrama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/resources/diagrama.png -------------------------------------------------------------------------------- /resources/piñaSabe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InigoRomero/LO-QUE-IROMERO--SABE-LA-PI-A-LO-SABE-/HEAD/resources/piñaSabe.png --------------------------------------------------------------------------------