Skip to content

Commit d596095

Browse files
initial commit
0 parents  commit d596095

File tree

520 files changed

+65505
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

520 files changed

+65505
-0
lines changed

index.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
const express = require('express')
2+
const app = express()
3+
const PORT = 3000
4+
5+
app.use(express.json())
6+
7+
// Import plant routes
8+
const plantRoutes = require('./routes/plantRoutes')
9+
10+
app.get('/', (req, res) => {
11+
res.send('🌱 Plant Care 🌱')
12+
})
13+
14+
// Use the plantRoutes for the /plants path
15+
app.use('/plants', plantRoutes)
16+
17+
app.listen(PORT, () => {
18+
console.log(`Server running at http://localhost:${PORT}`)
19+
})

node_modules/.bin/mime

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/mime.cmd

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/mime.ps1

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)