Skip to content

Commit 2bf2793

Browse files
Fiverr-Client:Manueltaveras cyclic-software#1.0
2 parents e9f8e8e + 46d6396 commit 2bf2793

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# starter-micro-api
2+
3+
This is the simplest possible nodejs api using the base http library that responds to any request with:
4+
```
5+
Yo!
6+
```
7+
8+
## Deploy in under 10 seconds
9+
10+
[![Deploy to Cyclic](https://deploy.cyclic.app/button.svg)](https://deploy.cyclic.app/)
11+
- Sets up instant continuous deployment on `git push`
12+
- Realtime backend logs and API request monitoring

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ mongoose.connect(mongooseURI)
1515

1616
const app = express()
1717

18-
require('./routes')(app)
18+
require('./routes')(app)

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
2-
"name": "CrazyVolt",
2+
"name": "starter-micro-api",
33
"version": "1.0.0",
4-
"description": "Freelancer on Fiverr",
4+
"description": "Cyclic.sh micro api starter",
55
"main": "index.js",
66
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1",
8-
"dev": "nodemon index.js"
7+
"test": "echo \"Error: no test specified\" && exit 1"
98
},
10-
"keywords": [],
119
"author": "",
1210
"license": "ISC",
1311
"dependencies": {
@@ -16,4 +14,4 @@
1614
"mongoose": "^8.0.3",
1715
"nodemon": "^3.0.2"
1816
}
19-
}
17+
}

0 commit comments

Comments
 (0)