Untitled

 avatar
unknown
plain_text
2 years ago
242 B
7
Indexable
#!/usr/bin/env bash

# set -a makes automatically exports all subsequent variables
set -a

# source the env file containing the variables
source .env

# reset the -a option
set +a

# launch the python server
/usr/bin/python3 ./web_server.py

Editor is loading...
Leave a Comment