Skip to content

Commit

Permalink
Added a slack invite link to dev server startup message.
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenAsJade committed Jun 3, 2024
1 parent ee3e762 commit 6341b90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,12 @@ function dev_server(done) {
dev_server.use(body_parser.text());

http.createServer(dev_server).listen(port, null, function () {
console.info(`#############################################`);
console.info(`\n\n#############################################`);
console.info(`## Development server started on port ${port}`);
console.info(`## ( http://localhost:${port} )`);
console.info(`## pointing at ${BACKEND} (${server_url})`);
console.info(`#############################################`);
console.info(`#############################################\n\n`);
console.info("Join us at https://join.slack.com/t/online-go/shared_invite/zt-2jww58l2v-iwhhBiVsXNxcD9xm74bIKA if you'd like to chat...");
});

dev_server.use(express.static("dist"));
Expand Down

0 comments on commit 6341b90

Please sign in to comment.