Skip to content

Commit

Permalink
Primer commit
Browse files Browse the repository at this point in the history
  • Loading branch information
UBEIMAR ALVAREZ HERNANDEZ authored and UBEIMAR ALVAREZ HERNANDEZ committed Aug 6, 2019
0 parents commit c21cb34
Show file tree
Hide file tree
Showing 5 changed files with 444 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@



node_modules/
81. C\303\263digos de respuestas HTTP/
Peticiones HTTP - GET - PUT - POST \342\200\223 DELETE.docx/
robo3t-1.3.1-windows-x86_64-7419c406.exe/
~$ticiones HTTP - GET - PUT - POST \342\200\223 DELETE.docx/

362 changes: 362 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "07-restserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2"
}
}
4 changes: 4 additions & 0 deletions server/config/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// ============================
// Puerto
// ============================
process.env.PORT = process.env.PORT || 3000;
Loading

0 comments on commit c21cb34

Please sign in to comment.