Untitled

 avatar
unknown
plain_text
a year ago
242 B
4
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