mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-27 16:24:12 +00:00
11 lines
163 B
Bash
Executable File
11 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "Building invest-api..."
|
|
go build -o invest-api .
|
|
|
|
echo "Starting invest-api on port ${PORT:-8090}..."
|
|
./invest-api
|