No description
Find a file
2025-01-24 02:16:49 -05:00
public update 2024-12-12 17:49:29 -05:00
src updated 2025-01-23 01:47:04 -05:00
.dockerignore Fix docker 2024-12-01 00:24:26 -05:00
.gitignore Add cache dir 2024-12-22 23:22:41 -05:00
astro.config.mjs updated 2025-01-23 01:47:04 -05:00
bun.lock Migrate to Bun 1.2 2025-01-24 02:16:49 -05:00
bunfig.toml Install from SudoVanilla Registry 2024-12-11 20:42:09 -05:00
config.json updated 2025-01-23 01:47:04 -05:00
docker-compose.yml Set comments, add /public for Docker Compose file 2024-12-12 17:49:39 -05:00
Dockerfile updated 2025-01-23 01:47:04 -05:00
LICENSE Add license 2024-12-11 00:55:20 -05:00
package.json updated 2025-01-23 01:47:04 -05:00
README.md updated 2025-01-23 01:47:04 -05:00
tsconfig.json Add support to add a blog using Ghost, creating a separated blog page 2024-12-23 16:46:42 -05:00


ButterflyVu

ButterflyVu is a documentation template built on the Astro Web Framework.

Development

bun will be used over npm in instructions.

Requirements

  • Git
  • Bun

Clone Repository

Start by cloning the repository to somewhere on your device using the git command:

git clone https://ark.sudovanilla.org/korbs/butterflyvu/
cd ./butterflyvu/

Install Packages

Install required packages so you can run the project:

bun install

Run

Run the website with the run command:

bun start

The website should start running at http://localhost:2014.

If the website is not running and an error appears, troubleshoot the problem by reading the error and try again. If the problem persist, submit an issue.

Hosting

Requirements

It is expected for the server admin to use the Docker method, as it is recommended, so please install the Docker Engine.

SudoVanilla does NOT recommend using the Docker Desktop application, as it is proprietary software.

A Docker Compose file is provided that can be used without needing to clone the repository. Download the file to it's folder somewhere on your disk and run it.

services:
  butterflyvu:
    image: oci.registry.sudovanilla.org/butterflyvu:latest
    volumes:
      - ./config.json:/app/config.json
      - ./docs/:/app/src/content/docs/
      - ./dists/:/app/dist/

  nginx:
    image: nginx:latest
    restart: always
    ports:
      - 4242:80
    volumes:
      - ./dists/:/usr/share/nginx/html/

Overriding Components

Since ButterflyVu is written in Astro and the site is built during each startup in Docker, overriding the components is easy. Now for, overriding the header will be shown, it's pretty much the same basics for other components.

This also works for any other part of ButterflyVu, such as for the layouts and styles. This will be expanded on once the ButterflyVu documentations are written on it's own site, ironic that it hasn't been built yet, right?

Header

In the docker-compose.yml file, add a path to the volumes section to your custom header:

  - ./components/Header.astro:/app/src/components/global/Header.astro

The file must be an .astro file, anything else like .jsx will not work.

If you already have the custom header written and it's ready for showtime, just run the Docker image again and the new header will be built with the site.


A SudoVanilla Project