git clone https://github.com/stever/zxcoder-api-zxbasic.git
cd zxcoder-api-zxbasic/
virtualenv venv
source ./venv/bin/activate
pip install -r requirements.txtuvicorn app.main:app --reloaddocker build -t ghcr.io/stever/zxcoder-api-zxbasic .
docker push ghcr.io/stever/zxcoder-api-zxbasicdocker run \
--env=API_URL=https://zxcoder.org/api/v1/graphql \
--publish=80:8000 \
--detach=true \
--name=zxcoder-api-zxbasic \
ghcr.io/stever/zxcoder-api-zxbasicTick option to "Forward client headers to webhook".
type Mutation {
compile (
basic: String!
): CompileResult
}type CompileResult {
base64Encoded: String!
}http://zxbasic/compile/
