Korbs/Contour
Archived
Template
1
Fork 0
An Astro template
This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file Use this template
2024-01-31 06:59:04 -05:00
public Add rest of stuff 2024-01-30 11:04:16 -05:00
src Override Starlight CSS 2024-01-31 06:59:04 -05:00
.gitignore Add rest of stuff 2024-01-30 11:04:16 -05:00
astro-i18next.config.mjs Add Astro i18next 2024-01-30 11:00:33 -05:00
astro.config.mjs Add Starlight integration 2024-01-31 06:58:51 -05:00
bun.lockb Add rest of stuff 2024-01-30 11:04:16 -05:00
docker-compose.yml Add Docker files 2024-01-30 11:02:33 -05:00
Dockerfile Add Docker files 2024-01-30 11:02:33 -05:00
LICENSE Closed Source 2024-01-29 08:09:37 -05:00
package.json Add rest of stuff 2024-01-30 11:04:16 -05:00
README.md Add rest of stuff 2024-01-30 11:04:16 -05:00
tsconfig.json Add rest of stuff 2024-01-30 11:04:16 -05:00

FluxNodes

Landing

The image shown is a concept

Development

Requirements

  • Bun
  • NodeJS 20 or later

Install Packages

Installing packages is required to start run and to build the website, run:

bun install

Run

To start running the website on a port, run:

bun dev

Production

Build Static

To build the website in static mode, run:

bun build

Server Side Rendering

To run the website in server side rendering mode, run:

bun start

Docker

This website is Docker ready!

Build the Docker image, run:

docker build -t fluxnodes.net .

Then, to run:

docker run -d -p 2000:2000 fluxnodes.net

or use the already provided Docker Compose file:

docker compose up -d

sudo might be required on some systems to run Docker commands.