{"id":50639043,"url":"https://github.com/floci-io/floci-labs","last_synced_at":"2026-06-07T06:31:03.366Z","repository":{"id":362176344,"uuid":"1245345163","full_name":"floci-io/floci-labs","owner":"floci-io","description":"Show me what you did today, not just screenshot of the landing page","archived":false,"fork":false,"pushed_at":"2026-06-03T01:20:04.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-03T03:15:20.758Z","etag":null,"topics":["aws","azure","gcp","labs"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/floci-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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-05-21T06:18:37.000Z","updated_at":"2026-06-03T01:20:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/floci-io/floci-labs","commit_stats":null,"previous_names":["floci-io/floci-labs"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/floci-io/floci-labs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floci-io%2Ffloci-labs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floci-io%2Ffloci-labs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floci-io%2Ffloci-labs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floci-io%2Ffloci-labs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/floci-io","download_url":"https://codeload.github.com/floci-io/floci-labs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floci-io%2Ffloci-labs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34011812,"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-07T02:00:07.652Z","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":["aws","azure","gcp","labs"],"created_at":"2026-06-07T06:30:59.459Z","updated_at":"2026-06-07T06:31:03.347Z","avatar_url":"https://github.com/floci-io.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Floci Labs\n\n\u003e Stop screenshotting the landing page. **Build something.**\n\nFloci Labs is a community-driven collection of things people have actually built with [Floci](https://floci.io) — the free, MIT-licensed local AWS emulator. Snippets, mini-projects, tutorials, weird experiments, anything goes.\n\nIf you've spun up Floci and made something cool with it — even something silly — this is where it lives.\n\n---\n\n## What counts as a lab?\n\nAnything that runs against Floci. Some examples to get the gears turning:\n\n- **Snippets** — a 50-line script showing how to wire S3 + Lambda + SQS locally\n- **Mini-projects** — a working URL shortener, a local-only photo gallery, a chat backend\n- **Tutorials** — a walkthrough of testing your Terraform against Floci before applying to real AWS\n- **Integrations** — Floci + Testcontainers, Floci + your favorite framework, Floci in CI\n- **Weird stuff** — a multiplayer game using DynamoDB as the state store, ASCII art generated by Bedrock and stored in S3, whatever you want\n- **Benchmarks \u0026 comparisons** — \"I migrated from X to Floci, here's what broke and what didn't\"\n\nThere is no quality bar except \"it runs.\" Half-baked is fine. Hacky is fine. Educational, weird, useful — all welcome.\n\n## How to contribute a lab\n\n1. **Fork this repo.**\n2. **Copy `labs/_template/` to `labs/your-lab-name/`.** Use kebab-case (`labs/sqs-fanout-demo`, not `labs/SQS Fanout!`).\n3. **Build your lab.** Whatever language, whatever stack. Just make sure it runs against a stock `floci/floci:latest` container.\n4. **Fill in the lab's `README.md`** — what it does, how to run it, why someone might care.\n5. **Open a PR.** A maintainer will skim it, maybe leave a comment, and merge.\n\nThat's it. No CLA, no template police, no \"please rewrite this section.\" If it works and isn't harmful, it goes in.\n\n## How to use a lab\n\nEvery lab is self-contained in its own folder. Clone the repo, `cd` into the lab you want, follow its README.\n\n```bash\ngit clone https://github.com/floci-io/floci-labs.git\ncd floci-labs/labs/example-s3-photo-gallery\n# follow the lab's README\n```\n\nMost labs assume you have Floci running on `localhost:4566`. If you don't:\n\n```bash\ndocker run -d --name floci -p 4566:4566 \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  floci/floci:latest\n```\n\n## Lab index\n\n| Lab | What it does | Stack |\n|-----|--------------|-------|\n| [example-s3-photo-gallery](labs/example-s3-photo-gallery) | A tiny photo gallery backed by local S3 | Node.js, S3 |\n| [eks-hello-cluster](labs/eks-hello-cluster) | Full EKS control-plane lifecycle on Floci, plus a kubectl workload bonus | Bash, AWS CLI, EKS/k3s |\n\n\u003e _Your lab here. Open a PR._\n\n## Ground rules\n\n- **It has to run against vanilla Floci** — no paid services, no special builds.\n- **Be kind in reviews and discussions.** Some labs will be a contributor's first open-source PR. Treat them that way.\n- **No secrets, no real credentials.** Floci accepts any dummy key; use `test`/`test`.\n- **MIT licensed**, same as Floci itself. By submitting, you agree your lab is shared under MIT.\n\n## Community\n\n- **Slack:** [floci.slack.com](https://floci.slack.com)\n- **Discussions:** [floci-io/floci · Discussions](https://github.com/floci-io/floci/discussions)\n- **Main repo:** [github.com/floci-io/floci](https://github.com/floci-io/floci)\n\n---\n\nFloci Labs is maintained alongside [Floci](https://github.com/floci-io/floci). Light, fluffy, and always free.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffloci-io%2Ffloci-labs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffloci-io%2Ffloci-labs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffloci-io%2Ffloci-labs/lists"}