Drop your .zip file here or click to browse
Max 100 MB · App files at the zip root (not nested in a folder)
Your app gets App Storage
Every AppHub app comes with private storage at
/data for SQLite, JSON, or uploaded files. Anything written there survives every redeploy. After approval you can browse, download, and manage your files from
My Apps → App Storage.
# Python
import os, sqlite3
DB = os.path.join(os.environ["APPHUB_DATA_DIR"], "app.db")
conn = sqlite3.connect(DB)
# Node
const fs = require("fs");
fs.writeFileSync(`${process.env.APPHUB_DATA_DIR}/state.json`, JSON.stringify(data));
Set environment variables (optional)
One KEY=value pair per line. IT reviews these before deployment. Do not include production secrets yet.