Commit fdf9c6e7 authored by nanahira's avatar nanahira

use real env directly

parent c11fee61
Pipeline #8952 passed with stages
in 1 minute and 30 seconds
#!/usr/bin/env bash
if [ "$1" != "" ] && [ -f $1 ]; then
echo "Using provided .env file: $1"
export $(cat .env| grep -v "#" | xargs)
shift
else
echo "No .env file specified. exit."
exit 1
fi
CMD="python3 -u ./backend.py"
if [ "$1" == "mprof" ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment