Skip to content

Commit

Permalink
Git commit Better URL Shortener
Browse files Browse the repository at this point in the history
  • Loading branch information
gitsumakwel committed Nov 22, 2021
0 parents commit b6e9c0c
Show file tree
Hide file tree
Showing 15 changed files with 2,284 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode/*
.env
node_modules/
2 changes: 2 additions & 0 deletions .replit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
language = "nodejs"
run = "npm run dev"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# [URL Shortener Microservice](https://www.freecodecamp.org/learn/back-end-development-and-apis/back-end-development-and-apis-projects/url-shortener-microservice)
13 changes: 13 additions & 0 deletions nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"env": {
"NODE_ENV": "development"
},
"ext": "js,json,html,css",
"delay": "2500"
}
Loading

0 comments on commit b6e9c0c

Please sign in to comment.