mirror of
https://github.com/Llloooggg/Dyxless.git
synced 2026-03-06 10:46:24 +03:00
9 lines
132 B
Bash
9 lines
132 B
Bash
#!/bin/bash
|
|
|
|
set echo off
|
|
|
|
export FLASK_APP=dyxless
|
|
export FLASK_ENV=development
|
|
|
|
gunicorn --bind 0.0.0.0:5000 dyxless.__init__:app
|