Skip to content

Commit

Permalink
chore: Replace server's port with 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
nicetomytyuk committed Jul 22, 2024
1 parent 531b0b5 commit 0466f55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ NODE_ENV = "production"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = true
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
processes = ['app']
Expand Down
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ try {
});

await server.listen({
port: 8000,
port: 3000,
});

if (config.BOT_MODE === "webhook") {
Expand Down

0 comments on commit 0466f55

Please sign in to comment.