Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Preview

on:
pull_request:
paths-ignore: # skip building preview if changes are limited to following paths
- "README.md"

jobs:
preview:
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,25 @@ $ docker compose up

The website will be available at `http://localhost:4321`.

#### Docker Troubleshooting

Docker Compose mounts volumes from your file system to enable live reload. If
you're having problems starting the container, try this:

```
# Clean everything
docker compose down -v # Remove volumes
docker image rmi website-web # Clean unused images
docker rm website-web # Clean unused containers

# Remove local pnpm store if it exists
rm -rf .pnpm-store

# Rebuild from scratch
docker compose build --no-cache
docker compose up
```

## Content Structure 🗂️

The content of the site is store in this repository. We are using Astro's
Expand Down