Make sure to install the dependencies:
bun installStart the development server on http://localhost:3000:
bun run devPre 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-sslBuild the application for production:
bun run buildLocally preview production build:
bun run previewCheck out the deployment documentation for more information.