Skip to content

coderscantina/website

Repository files navigation

The Coder's Cantina Website

Setup

Make sure to install the dependencies:

bun install

Development Server

Start the development server on http://localhost:3000:

bun run dev

SSL Development Server

Pre Requirements, create a certificate

openssl genrsa 2048 > localhost.key
chmod 400 localhost.key
openssl req -new -x509 -nodes -sha256 -days 365 -key localhost.key -out localhost.crt  -subj "/C=DE/ST=localhost/L=localhost/O=localhost/OU=localhost/CN=localhost"

Run:

bun run dev-ssl

Production

Build the application for production:

bun run build

Locally preview production build:

bun run preview

Check out the deployment documentation for more information.

Releases

No releases published

Packages

 
 
 

Contributors