{"id":51817860,"url":"https://github.com/aditya000099/zerobase","last_synced_at":"2026-07-22T02:01:45.961Z","repository":{"id":340419459,"uuid":"943244427","full_name":"aditya000099/zerobase","owner":"aditya000099","description":"Open-source Backend as a Service - Database, Auth, Storage, and Realtime out of the box.","archived":false,"fork":false,"pushed_at":"2026-05-29T11:33:45.000Z","size":718,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-29T13:12:47.312Z","etag":null,"topics":["backend","backend-as-a-service","docker","hacktoberfest","javascript","opensource"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aditya000099.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-05T11:50:31.000Z","updated_at":"2026-05-29T11:33:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aditya000099/zerobase","commit_stats":null,"previous_names":["aditya000099/zerobasezb","aditya000099/zerobase"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aditya000099/zerobase","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya000099%2Fzerobase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya000099%2Fzerobase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya000099%2Fzerobase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya000099%2Fzerobase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aditya000099","download_url":"https://codeload.github.com/aditya000099/zerobase/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya000099%2Fzerobase/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35743464,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-22T02:00:06.236Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","backend-as-a-service","docker","hacktoberfest","javascript","opensource"],"created_at":"2026-07-22T02:01:45.281Z","updated_at":"2026-07-22T02:01:45.956Z","avatar_url":"https://github.com/aditya000099.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZeroBase\n\nOpen-source Backend as a Service — Database, Auth, Storage, and Realtime out of the box.\n\n## Quick Start (Local)\n\n```bash\ngit clone https://github.com/aditya000099/zerobase.git\ncd zerobase\ncp .env.example .env        # edit credentials\ndocker compose up --build\n```\n\nDashboard → `http://localhost:3000`\n\n---\n\n## Hosting Guide\n\nZeroBase ships as a single Docker image. Any host that runs Docker works.\n\n### 1. Create a `.env` file\n\n```env\nPOSTGRES_USER=admin\nPOSTGRES_PASSWORD=\u003cstrong-password\u003e\nPOSTGRES_DB=zerobase_main\n```\n\n### 2. Pick a host \u0026 deploy\n\n#### Option A — VPS (cheapest)\n\nAny \\$5/mo VPS (DigitalOcean, Hetzner, Linode, AWS Lightsail):\n\n```bash\n# SSH into your server\nssh user@your-server\n\n# Install Docker\ncurl -fsSL https://get.docker.com | sh\n\n# Clone \u0026 run\ngit clone https://github.com/aditya000099/zerobase.git\ncd zerobase\ncp .env.example .env   # edit with real credentials\ndocker compose up -d   # runs in background\n```\n\nPoint a domain to your server IP and put it behind a reverse proxy (Caddy/Nginx) for HTTPS.\n\n**Caddy example** (`/etc/caddy/Caddyfile`):\n```\napi.yourdomain.com {\n    reverse_proxy localhost:3000\n}\n```\n\n#### Option B — Railway / Render\n\n1. Push to GitHub\n2. Create a new project on [Railway](https://railway.app) or [Render](https://render.com)\n3. Add a PostgreSQL service\n4. Set env vars: `POSTGRES_USER`, `POSTGRES_PASSWORD`, `POSTGRES_DB`\n5. Deploy — it auto-detects the `Dockerfile`\n\n#### Option C — Fly.io\n\n```bash\nfly launch            # auto-detects Dockerfile\nfly postgres create   # managed Postgres\nfly secrets set POSTGRES_USER=admin POSTGRES_PASSWORD=\u003cpw\u003e POSTGRES_DB=zerobase_main\nfly deploy\n```\n\n### 3. Connect your app\n\n```bash\nnpm install zerobase\n```\n\n```js\nimport { ZeroBaseClient, DatabaseClient, AuthClient, StorageClient, RealtimeClient } from \"zerobase\";\n\nconst client = new ZeroBaseClient(\"your-project-id\", \"https://api.yourdomain.com\", \"your-api-key\");\nconst db = new DatabaseClient(client);\nconst auth = new AuthClient(client);\nconst storage = new StorageClient(client);\nconst rt = new RealtimeClient(client);\n```\n\n---\n\n## Stack\n\n| Layer     | Tech             |\n|-----------|------------------|\n| API       | Node.js, Express |\n| Database  | PostgreSQL       |\n| Dashboard | React            |\n| Realtime  | WebSocket        |\n| Container | Docker           |\n| SDK       | TypeScript (npm) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya000099%2Fzerobase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faditya000099%2Fzerobase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya000099%2Fzerobase/lists"}