Merge pull request 'dev-reorganization' (#3) from dev-reorganization into master

Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2025-01-03 22:43:20 +00:00
18 changed files with 27 additions and 7 deletions

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# Welcome
YouCock is a (now defunct) online shirine to all things Gareth Saunders. It originally lived at youcock.ga, and is now available at [youcock.jaywll.co](https://youcock.jaywll.co).
We started it some time around the mid-aughts to catalogue and preserve the amazing antics of our good friend Gareth. Even when we created it was unashamedly retro, harking back to the days of geocities and some of the early web-design practices and paradigms that went with it. I don't think we had a copy of Macromedia Dreamweaver, but if we did then that's probably what we'd have used. Or maybe Microsoft Frontpage '98.
Anyway, our preservation efforts seem successful because it's now some two decades later and the content still exists with only a few minor updates. It's now version controlled through git, and built to be deployed on modern app-hosting infrastructure.
## Contributing
The authoritative source repository for this content is at [code.jaywll.co](https://code.jaywll.co/jason/YouCock).
I can't imagine anyone would want to contribute to this 20 year old website or have any use for the code, but whatever - it's available to you if that's your jam.
The `master` and `release` branches are protected. If you do want to make changes clone the changes, create a new branch with a sensible name for the updates you want to make, and then create a pull request to merge those changes back into `master`.
The public website is based on the `release` branch, and I will update it from `master` at my discretion.

View File

@@ -2,6 +2,7 @@
"schemaVersion": 2, "schemaVersion": 2,
"dockerfileLines": [ "dockerfileLines": [
"FROM lipanski/docker-static-website", "FROM lipanski/docker-static-website",
"COPY ./app ." "COPY httpd.conf httpd.conf",
"COPY ./www /www"
] ]
} }

View File

@@ -1,4 +0,0 @@
# Script used to spin up a local webserver for development
#!/bin/bash
podman run -it --rm --init -p 3000:3000 $(podman build -q .)

View File

@@ -1 +1 @@
H:/app H:/www

View File

@@ -1,3 +1,3 @@
FROM docker.io/lipanski/docker-static-website FROM docker.io/lipanski/docker-static-website
COPY httpd.conf httpd.conf COPY httpd.conf httpd.conf
COPY ./app /app COPY ./www /www

View File

@@ -0,0 +1,6 @@
# Script used to spin up a local webserver for development
#!/bin/bash
CURR_DIR="$(pwd)"
cd ${PWD}/..
podman run -it --rm --init -p 3000:3000 $(podman build -q -f ./local-test/Dockerfile .)

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 126 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB