28 lines
720 B
Markdown
28 lines
720 B
Markdown
# website
|
|
https://showerloop.cc new site for https://showerloop.org [planned]
|
|
|
|
## Local Development
|
|
|
|
To test this site locally:
|
|
|
|
1. Make sure you have [Hugo](https://gohugo.io/installation/) installed on your system
|
|
2. Clone this repository
|
|
3. Run the development server using the script:
|
|
|
|
```bash
|
|
./run-hugo-server.sh
|
|
```
|
|
|
|
Or run Hugo directly:
|
|
|
|
```bash
|
|
hugo server -D --disableFastRender
|
|
```
|
|
|
|
4. Open your browser and go to http://localhost:1313/ to view the site
|
|
5. The site will automatically reload when you make changes to the content or templates
|
|
|
|
### Notes
|
|
- The `-D` flag enables draft content to be visible in the development environment
|
|
- `--disableFastRender` ensures full rebuilds for more reliable preview
|