{"id":51203883,"url":"https://github.com/stackoverprof/nullclaw-deployment","last_synced_at":"2026-06-28T02:06:50.026Z","repository":{"id":343174715,"uuid":"1176592424","full_name":"stackoverprof/nullclaw-deployment","owner":"stackoverprof","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-09T07:33:30.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-09T11:58:37.573Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/stackoverprof.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":"2026-03-09T07:10:33.000Z","updated_at":"2026-03-09T07:33:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/stackoverprof/nullclaw-deployment","commit_stats":null,"previous_names":["stackoverprof/nullclaw-deployment"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/stackoverprof/nullclaw-deployment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackoverprof%2Fnullclaw-deployment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackoverprof%2Fnullclaw-deployment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackoverprof%2Fnullclaw-deployment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackoverprof%2Fnullclaw-deployment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stackoverprof","download_url":"https://codeload.github.com/stackoverprof/nullclaw-deployment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackoverprof%2Fnullclaw-deployment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34874569,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-28T02:00:05.809Z","response_time":54,"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":[],"created_at":"2026-06-28T02:06:49.417Z","updated_at":"2026-06-28T02:06:50.006Z","avatar_url":"https://github.com/stackoverprof.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deploying NullClaw for Free\n\nThis directory contains the scaffolding needed to deploy [NullClaw](https://github.com/nullclaw/nullclaw) (an ultra-lightweight AI agent infrastructure) to a free VPS utilizing free AI models.\n\n## 1. Get Free AI Model API Keys\n\nTo keep this 100% free, we configured the `config.json` to use either **Groq** (which has an incredibly generous free tier) or **Gemini** (Google's free tier).\n\n1. **Groq**: Go to [console.groq.com](https://console.groq.com/keys) and create a free API Key.\n2. **Gemini**: Go to [Google AI Studio](https://aistudio.google.com/app/apikey) to generate a free API key.\n\nWe have already set up `config.json` to load these from environment variables (`$GROQ_API_KEY` and `$GEMINI_API_KEY`).\n\n---\n\n## 2. Deploying (Choose your Free VPS)\n\nYou have several free options. **Fly.io** and **Render** are the easiest because they natively support Docker containers via our `Dockerfile`.\n\n### Option A: Deploy to Render (Easiest)\n\nRender offers a permanent free tier for Web Services.\nWe have set up a GitHub repository for you. Click the button below to deploy:\n\n[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/stackoverprof/nullclaw-deployment)\n\nAlternatively, you can do it manually:\n\n1. Go to [Render Dashboard](https://dashboard.render.com).\n2. Click **New** -\u003e **Blueprint**.\n3. Connect the GitHub repository. Render will automatically read the `render.yaml` file.\n4. In your Render Dashboard, go to your new service's **Environment** tab and explicitly add the `GROQ_API_KEY` (and `TELEGRAM_BOT_TOKEN` if you configured a channel).\n\n### Option B: Deploy to Fly.io\n\nFly.io provides up to 3 shared-cpu VMs for free.\n\n1. Install the `flyctl` CLI tool on your computer.\n2. Run `fly auth login`.\n3. In this directory, run `fly launch`. (Say \"Yes\" when it asks to copy the existing `fly.toml` configuration).\n4. Do **not** deploy just yet. First, set your secrets securely:\n   ```bash\n   fly secrets set GROQ_API_KEY=\"your-groq-api-key\"\n   fly secrets set TELEGRAM_BOT_TOKEN=\"your-telegram-token\"\n   ```\n5. Deploy the app:\n   ```bash\n   fly deploy\n   ```\n\n### Option C: Deploy to Oracle Cloud (ARM Always-Free)\n\nOracle provides up to 4 ARM Ampere A1 Compute instances with 24GB RAM for free.\n\n1. Sign up for an Oracle Cloud account and create a new Compute Instance (Ubuntu 22.04 on ARM).\n2. SSH into your Oracle VPS.\n3. Install Docker: `sudo apt install docker.io`\n4. Copy this directory to the VPS and run it via Docker:\n   ```bash\n   docker build -t nullclaw-app .\n   docker run -d --name nullclaw -e GROQ_API_KEY=\"your-key\" nullclaw-app\n   ```\n   _(Alternatively, since it's an ARM server, you could just download the `nullclaw-aarch64-linux` binary directly from their GitHub and run it without Docker to save overhead)._\n\n---\n\n## 3. Customizing Channels (e.g. Telegram)\n\nIf you want NullClaw to respond to you via Telegram:\n\n1. Message [`@BotFather`](https://t.me/BotFather) on Telegram and create a new bot.\n2. Copy the **Bot Token**.\n3. Pass that securely into your VPS environment as `TELEGRAM_BOT_TOKEN`.\n\nEnjoy your 100% free, lightweight AI assistant!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstackoverprof%2Fnullclaw-deployment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstackoverprof%2Fnullclaw-deployment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstackoverprof%2Fnullclaw-deployment/lists"}