Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johannschopplich/bildhauer-volkmar-kuehn.de
🐰 Personal website for German sculpting artist Volkmar Kühn
https://github.com/johannschopplich/bildhauer-volkmar-kuehn.de
kirby-theme kirby-website kirbycms unocss vitejs
Last synced: 17 days ago
JSON representation
🐰 Personal website for German sculpting artist Volkmar Kühn
- Host: GitHub
- URL: https://github.com/johannschopplich/bildhauer-volkmar-kuehn.de
- Owner: johannschopplich
- License: mit
- Created: 2023-04-05T15:56:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-14T07:47:41.000Z (8 months ago)
- Last Synced: 2024-10-15T01:21:35.161Z (about 1 month ago)
- Topics: kirby-theme, kirby-website, kirbycms, unocss, vitejs
- Language: TypeScript
- Homepage: https://bildhauer-volkmar-kuehn.de
- Size: 2.75 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Bildhauer Volkmar Kühn](./public/assets/images/og.png)](https://bildhauer-volkmar-kuehn.de)
# Bildhauer Volkmar Kühn
## What is this?
This is the website source code for the sculptor [Volkmar Kühn](https://de.wikipedia.org/wiki/Volkmar_K%C3%BChn), a German sculptor known for his works displayed in public spaces, particularly in Gera (the town I grew up in). Since 1968, he has been living and working in the former Mildenfurth monastery, which the logo represents.
The artist lacks exposure on the interweb, so I decided to build a website for him during Easter 2023. The website is built with [Kirby](https://getkirby.com), [Vite](https://vitejs.dev) and [UnoCSS](https://unocss.dev).
## Installation
1. Duplicate the [`.env.development.example`](./.env.development.example) as `.env`:
```bash
cp .env.development.example .env
```
2. Install the required Node dependencies:
```bash
pnpm install
```
3. Install the required Composer dependencies:
```bash
composer install
```## Usage
### Development
1. Start the Vite development server and watch for file changes accordingly:
```bash
pnpm dev
```
2. Run the built-in PHP web server or use a development web server of your choice (like [Laravel Valet](https://laravel.com/docs/10.x/valet)).
```bash
composer start
```### Production
Build the frontend assets for production:
```bash
pnpm build
```If you have caching enabled, make sure to wipe the cache after each build:
```bash
rm -rf storage/cache/
```### Deployment
> [!TIP]
> See [ploi-deploy.sh](./scripts/ploi-deploy.sh) for deployment instructions.> [!NOTE]
> For Apache web servers: Some hosting environments require uncommenting `RewriteBase /` in [`.htaccess`](./public/.htaccess) to make site links work.## License
The code is licensed under [MIT](./LICENSE), words and images are licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/).
© 2023-PRESENT [Johann Schopplich](https://github.com/johannschopplich)