Skip to content

Commit

Permalink
Update URL configuration in server.js to use localhost and add API URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Mads Hermansen committed Apr 22, 2024
1 parent 374c6b1 commit 6d4c81b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/config/server.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
host: env('HOST', '127.0.0.1'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
},
webhooks: {
populateRelations: env.bool('WEBHOOKS_POPULATE_RELATIONS', false),
},
url: "https://hypso.space/api/"
});

0 comments on commit 6d4c81b

Please sign in to comment.