11 lines
294 B
Bash
Executable File
11 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the directory of the script and change to it
|
|
cd "$(dirname "$0")"
|
|
|
|
export GITEA_CLIENT_ID="your_client_id"
|
|
export GITEA_CLIENT_SECRET="your_client_secret"
|
|
export GITEA_INSTANCE_URL="https://gitea.example.com"
|
|
export APP_URL="http://localhost:9999"
|
|
cargo run --features gitea
|