Skip to content

Commit

Permalink
Merge branch 'feature/sensei-client' of github.com:atlantabitdevs/fam…
Browse files Browse the repository at this point in the history
…ilybtc into feature/sensei-client
  • Loading branch information
bnonni committed May 7, 2022
2 parents 302bd3b + 3892a76 commit b0d72e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ const invoice = require('./api/invoice');
app.use('/api/v1/spot', spot);
app.use('/api/v1/invoice', invoice);

module.exports = app;
module.exports = { app, PORT };
6 changes: 3 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "park-lightning-api",
"name": "atlbitdevs-familybtc",
"version": "1.0.0",
"description": "Parking at the speed of lightning ⚡️",
"description": "A bitcoin solution for families",
"main": "server.js",
"repository": "[email protected]:atlantabitdevs/park-lightning.git",
"repository": "[email protected]:atlantabitdevs/familybtc.git",
"author": "[email protected]",
"license": "MIT",
"private": false,
Expand Down
3 changes: 1 addition & 2 deletions backend/server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const app = require('./app');
const PORT = process.env.PORT || 4000;
const { app, PORT } = require('./app');
const debug = require('./utils/debug');

app.listen(PORT, () => {
Expand Down

0 comments on commit b0d72e0

Please sign in to comment.