Skip to content

The ruck.tech website for Ruck, an open source buildless React web application framework for Deno.

License

Notifications You must be signed in to change notification settings

jaydenseric/ruck-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

52a834b · Feb 5, 2025

History

57 Commits
Jan 27, 2025
Mar 11, 2022
Feb 5, 2025
Jan 29, 2025
Jan 29, 2025
Mar 11, 2022
Mar 11, 2022
Jan 24, 2025
Jul 6, 2023
Mar 14, 2022
Jan 24, 2025
Jan 24, 2025
Jan 24, 2025
Jan 24, 2025
Mar 11, 2022
Jan 29, 2025

Repository files navigation

Ruck logo

Ruck website

The ruck.tech website for Ruck, an open source buildless React web application framework for Deno.

Requirements

Installation

For a local development installation, create a project scripts/.env.sh file containing the following environment variables, with values customized for your local environment:

# Development or production mode; "true" or "false".
export RUCK_DEV="true"

# The localhost port to serve the Ruck app on.
export RUCK_PORT="3000"

# GitHub access token used with the GitHub GraphQL API to query the
# jaydenseric/ruck repo releases for the releases related Ruck app routes.
export ACCESS_TOKEN_GITHUB=""

Scripts

Dev

To load the environment variables from scripts/.env.sh, make the public environment variable modules, and serve the Ruck app:

./scripts/dev.sh

Make public environment variable modules

Important

Requires environment variables.

To make the public environment variable modules:

./scripts/makeEnvModules.sh

Serve

Important

Requires environment variables.

To serve the Ruck app for either development or production:

./scripts/serve.sh

Format

To format the project:

deno fmt

Lint

To lint the project:

deno lint

Type check

Important

Beforehand, run the make public environment variable modules script.

To type check every JavaScript module in the project:

./scripts/type-check.sh