- Add a comprehensive .gitignore to manage project files. - Create the basic project structure including Cargo.toml, LICENSE, and README.md. - Add basic project documentation.
11 lines
227 B
Bash
Executable File
11 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the directory of the script and change to it
|
|
cd "$(dirname "$0")"
|
|
|
|
export SECRET_KEY=1234
|
|
export GITEA_CLIENT_ID=""
|
|
export GITEA_CLIENT_SECRET=""
|
|
export GITEA_INSTANCE_URL="https://git.ourworld.tf"
|
|
cargo run
|