-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2f75cc
commit f4afed1
Showing
37 changed files
with
65,823 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: node index.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const app = require("./src/app"); | ||
|
||
const port = process.env.PORT || 5000; | ||
app.listen(port, () => { | ||
console.log(`Listening: http://localhost:${port}`); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "node src/index.js", | ||
"dev": "nodemon src/index.js" | ||
}, | ||
"dependencies": { | ||
"algosdk": "^1.12.0", | ||
"cors": "^2.8.5", | ||
"dotenv": "^10.0.0", | ||
"express": "^4.17.2", | ||
"helmet": "^4.6.0", | ||
"joi": "^17.5.0", | ||
"mongoose": "^6.1.2", | ||
"morgan": "^1.10.0", | ||
"uuid": "^8.3.2" | ||
}, | ||
"devDependencies": { | ||
"nodemon": "^2.0.15" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.