Skip to content

Instantly share code, notes, and snippets.

View serge-eric-kalaga's full-sized avatar
🎯
Focusing

KALAGA Serge Eric serge-eric-kalaga

🎯
Focusing
View GitHub Profile
@erikkinding
erikkinding / kafka-local-docker-compose.yaml
Last active January 7, 2026 16:52
Docker compose for local Kafka setup with kafka-ui
# This setup allows you to both connect from within the docker-compose context as well as from services running on your local
# machine but not as part of the docker-compose setup. Any client connecting to the broker from the outside can connect to
# localhost:9092 while services running as part of the docker-compose connect to broker:9093.
#
# To access kafka-ui: http://localhost:7777
#
# I hope this helps someone out there! :)
version: '3'
networks:
@akrisanov
akrisanov / Makefile
Last active May 9, 2025 14:19
Makefile for FastAPI project
.PHONY: psql up down venv check-deps update-deps install-deps isort black mypy flake8 bandit lint test migrate serve
ifneq (,$(wildcard ./.env))
include .env
export
endif
VENV=.venv
PYTHON=$(VENV)/bin/python3
@PARC6502
PARC6502 / OpenSourceBaas.md
Last active January 20, 2026 18:57
List of open source, self hosted BaaS - Backend as a service

Backend as a Service

Note on sizes: a lot of those might be inaccurate as there might be many microservices required aside from the core release/docker image. I haven't tested these recently so I'm not sure

Supabase - ~94.9K stars

  • Designed explicitly as an open source Firebase alternative
  • Typescript based
  • Docker support
  • Full Postgres database with Realtime subscriptions

PocketBase - ~54.5K stars

@mdang
mdang / RAILS_CHEATSHEET.md
Last active January 22, 2026 21:16
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before