File size: 325 Bytes
9f4f013 af3119d f66a250 af3119d 44c2304 af3119d |
1 2 3 4 5 6 7 8 9 10 |
import os
import stat
if __name__ == "__main__":
# Set the permissions of the shell script to be executable
script_path = './start_server.sh'
os.chmod(script_path, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO) # rwxrwxrwx
# Run the shell script to start the Flask app with Gunicorn
os.system(script_path) |