mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-13 10:57:13 +00:00
40b9b84caa
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
301 B
Bash
24 lines
301 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
source ./helpers.sh
|
|
|
|
export APP_ENV="production"
|
|
|
|
build() {
|
|
echo "Building..."
|
|
local out_dir="dist"
|
|
mkdir -p "$out_dir"
|
|
}
|
|
|
|
test_suite() {
|
|
echo "Running tests..."
|
|
build
|
|
}
|
|
|
|
deploy() {
|
|
build
|
|
test_suite
|
|
echo "Deploying to $APP_ENV"
|
|
}
|