Skip to content

Commit

Permalink
port 5000 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigondec committed Oct 20, 2019
1 parent a0d7757 commit e094648
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export BOT_TOKEN=meu_token_123
export OPENWEATHERMAP_TOKEN=meu_token_123
export MODE=cmd
export SERVER_URL=https://jerimumhsbot.herokuapp.com
export PORT=5000
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
bot = JerimumBot(token=config('BOT_TOKEN', default='??'))

bot.run()
app.run(host='0.0.0.0', port=config('PORT', default=8443, cast=int))
app.run(host='0.0.0.0', port=config('PORT', default=5000, cast=int))

0 comments on commit e094648

Please sign in to comment.