mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2025-05-15 23:58:35 +00:00
8 lines
202 B
Bash
Executable file
8 lines
202 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
BASEDIR="$PWD"
|
|
OUTPUT_DIR="$BASEDIR/public"
|
|
STATIC_SRC="$BASEDIR/static/src"
|
|
STATIC_BUILD="$BASEDIR/static/build"
|
|
|
|
[[ -f "$BASEDIR/.env" ]] && export $(cat "$BASEDIR/.env" | xargs)
|