Floating Flows static site + Coolify Dockerfile deploy

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-17 12:35:31 +02:00
commit 2e33398d1f
31 changed files with 1387 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# Floating Flows
Premium AcroYoga website for Floating Flows (Freiburg). Static HTML/CSS/JS — no build step.
- `index.html` — landing page (video hero, courses, location, reviews, booking, photo carousel, contact)
- `courses.html` — full course details
- `about.html` — about / story
- `css/` — design system (`tokens.css`) + styles (`styles.css`)
- `assets/` — images, video, brand
## Deploy (Coolify + Dockerfile)
This repo ships a `Dockerfile` that serves the static files with nginx on port **80**.
In Coolify:
1. **New Resource → Application** from this Git repository.
2. **Build Pack:** `Dockerfile`.
3. **Port:** `80`.
4. **Domain:** `floatingflows.george1.dev` (ensure DNS `A`/`CNAME` points at the Coolify host).
5. Deploy.
## Run locally
Any static server works, e.g.:
```bash
python3 -m http.server 4599
# open http://localhost:4599
```