forked from FrederikBaerentsen/BrickTracker
Fix app init to work with gunicorn
This commit is contained in:
parent
6477be00b6
commit
c3f3ed0593
@ -9,4 +9,4 @@ RUN pip install -r requirements.txt
|
||||
# Bricktracker
|
||||
COPY . .
|
||||
|
||||
ENTRYPOINT ["entrypoint.sh"]
|
||||
ENTRYPOINT ["./entrypoint.sh"]
|
||||
|
4
app.py
4
app.py
@ -11,8 +11,6 @@ from bricktracker.socket import BrickSocket # noqa: E402
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
# Create the Flask app
|
||||
app = Flask(__name__)
|
||||
|
||||
@ -25,6 +23,8 @@ if __name__ == '__main__':
|
||||
threaded=not app.config['NO_THREADED_SOCKET'].value,
|
||||
)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
# Run the application
|
||||
logger.info('Starting BrickTracker on {host}:{port}'.format(
|
||||
host=app.config['HOST'].value,
|
||||
|
0
entrypoint.sh
Normal file → Executable file
0
entrypoint.sh
Normal file → Executable file
Loading…
Reference in New Issue
Block a user