The common planet for all Minecraft players — a community platform for publishing, discussion, and discovery.
English | 中文
Overview • Architecture • Tech Stack • Getting Started • Project Structure • Documentation
AlienCommons is a community platform built for Technical Minecraft players. It provides a space for players to publish articles and participate in discussions.
The project is currently in its early stages under heavy development.
┌──────────────────────────────────────────────────────┐
│ Frontend │
│ Nuxt 4 · Vue 3 · Tailwind CSS 4 │
└─────────────────┬────────────────────────────────────┘
│ HTTP / WebSocket
┌─────────────────▼────────────────────────────────────┐
│ Backend API │
│ Django 6 · Django REST Framework │
└──────┬──────────────┬────────────┬───────────────┬───┘
│ │ │ │
┌──────▼───────┐ ┌────▼────┐ ┌─────▼─────┐ ┌───────▼───────┐
│ PostgreSQL │ │ Redis │ │ RQ │ │ AlienMark │
│ 18 │ │ 8 │ │ Workers │ │ (Fastify) │
└──────────────┘ └─────────┘ └───────────┘ └───────────────┘
- Python 3.14, Django 6, Django REST Framework, Django Channels, Daphne
- PostgreSQL 18, Redis 8, RQ (
django-tasks-rq) - Nuxt 4, Vue 3, TypeScript, Tailwind CSS 4, Pinia
- AlienMark — custom TypeScript Markdown parser, internal Fastify rendering service
- Grafana, Loki, Grafana Alloy
- Docker Compose, Traefik, AWS, Cloudflare DNS
- pnpm workspaces, Turbo, uv, GitHub Actions
# Clone and install dependencies
git clone https://github.com/LazyAlienServer/aliencommons.git
cd aliencommons
pnpm install
# Start the full development stack
make dev-upThis launches all services: PostgreSQL, Redis, the backend API, task workers, the frontend dev server, AlienMark, and the observability stack (Grafana, Loki, Alloy).
# Frontend only
make frontend-dev # → http://localhost:8080
# Backend tests
make dev-backend-test
# Run all Node checks through Turbo
make node-checkFor the full set of available commands, see
make/docker.mkandmake/node.mk.
The Node workspace uses pnpm for dependency management, Turbo for cross-package task orchestration, and Vite+ for package-level formatting, linting, type checks, tests, and library/service builds.
pnpm run check # Turbo: build dependencies, then run package checks
pnpm run build # Turbo: build all Node packages in dependency order
pnpm run test # Turbo: run JavaScript tests
pnpm run typecheck # Turbo: run package type checks
pnpm run knip # Advisory unused-code and unused-dependency reportUse Turbo filters directly for single-package work, for example pnpm turbo run check --filter=frontend or pnpm turbo run build --filter=alienmark-service. Turbo uses the pnpm workspace graph so packages depending on alienmark get its build first. Vite+ configuration lives in vite.config.ts, Turbo task rules live in turbo.json, and Knip advisory rules live in knip.jsonc. Knip is intentionally separate from pnpm run check; use pnpm run knip:strict only when you want unused-code findings to produce a non-zero exit code.
aliencommons/
├── apps/
│ ├── backend/ Django API — articles, posts, comments,
│ │ bookmarks, reactions, reports, tasks, users
│ ├── frontend/ Nuxt 4 frontend application
│ └── alienmark/ Internal Markdown rendering service (Fastify)
├── packages/
│ └── alienmark/ TypeScript Markdown parser and HTML renderer
├── docs/
│ ├── users/ User guide (EN / CN)
│ ├── contributors/ Developer documentation
│ └── alienmark/ Markdown engine documentation
├── infra/
│ └── compose/ Docker Compose configurations (dev / stg / pro)
├── o11y/
│ ├── alloy/ Grafana Alloy log collection configs
│ ├── grafana/ Grafana dashboards and provisioning
│ └── loki/ Loki log aggregation configs
├── make/ Make targets for Docker and Node commands
└── .github/workflows/ CI/CD pipelines
| Audience | Description | Link |
|---|---|---|
| Users | Platform usage guide, community rules | docs/users/ |
| Contributors | Architecture, setup, development workflow | docs/contributors/ |
| AlienMark | Markdown syntax reference and API | docs/alienmark/ |
All documentation is available in English and Chinese (中文) and built with MkDocs using the Material theme.
Please note that some materials may be not fully up-to-date in this stage.
AlienCommons uses three environments:
dev— local development with Docker Composestg— staging, hosted on AWS, mirrors production as closely as practicalpro— production, hosted on AWS with Cloudflare DNS foraliencommons.com