Browse Source

fixed manage.py

Migs 10 years ago
parent
commit
83a91c065f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      manage.py

+ 1 - 1
manage.py

@@ -36,7 +36,7 @@ app = create_app(Config)
 manager = Manager(app)
 
 # Run local server
-manager.add_command("runserver", Server("0.0.0.0", port=5555))
+manager.add_command("runserver", Server("localhost", port=8080))
 
 # Migration commands
 manager.add_command('db', MigrateCommand)