Skip to content

Commit

Permalink
use a different port for local running to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
hkdobrev committed May 29, 2024
1 parent 3aeabdd commit 7f5a58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ server.listen(port, () =>

// This is a simple static server used for development purposes only
var StaticServer = require('static-server');
var server = new StaticServer({ rootPath: './public', port: 5000 });
var server = new StaticServer({ rootPath: './public', port: 5001 });
server.start(() => console.log(`Server listening to ${server.port}`));

0 comments on commit 7f5a58b

Please sign in to comment.