This folder is an export from projects/satsgate/.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
uvicorn app.main:app --reload --port 8000cp .env.example .env
# edit .env and set SATSGATE_HOSTNAME, SATSGATE_MACAROON_SECRET, SATSGATE_LIGHTNING_ADDRESS, SATSGATE_DEV_MODE=0
docker compose up -d --buildGET /.well-known/satsgate.jsonGET /openapi.json
git init
git add .
git commit -m "Initial public release"
# create a repo on GitHub, then:
# git remote add origin git@github.com:YOUR_USER/satsgate.git
# git push -u origin main