LessGooo AI learning app for Cameroon teachers
# LessGooo AI Academy for Cameroon Teachers
A standalone HTML learning app that teaches the basics of AI to teachers in Cameroon.
Design direction:
- Netflix-style learning rails
- KodeKloud-inspired lab/workspace
- LessGooo branding and logo
- Senior developer tone focused on improving Cameroon’s educational system
## Run locally
Open `index.html` directly in a browser, or run:
```bash
python3 -m http.server 8000
```
Then visit:
```text
localhost
```
## Run with Docker
Build the production image with the multi-stage Dockerfile:
```bash
docker build -t lessgooo-ai-teacher-cameroon:local .
```
Run the container:
```bash
docker run --rm -p 8080:80 lessgooo-ai-teacher-cameroon:local .
```
Then visit:
```text
localhost
```
Or use Docker Compose:
```bash
docker compose up --build
```
## Deploy
This repo is ready for GitHub Pages from the `main` branch root.