Korbs/Contour
Archived
Template
1
Fork 0
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.
Contour/README.md

55 lines
880 B
Markdown
Raw Normal View History

2024-01-30 11:04:16 -05:00
# FluxNodes
![Landing](https://img.sudovanilla.com/4aZdSVi.png)
> The image shown is a concept
## Development
### Requirements
- [Bun](https://bun.sh/)
- 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.