Skip to content

bryk-io/remix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 5, 2025
65a60c1 · Mar 5, 2025

History

11 Commits
Mar 5, 2025
Mar 5, 2025
Oct 24, 2023
Apr 4, 2024
Oct 24, 2023
Oct 24, 2023
Oct 24, 2023
Oct 24, 2023
Oct 24, 2023
Mar 5, 2025
Oct 24, 2023
Oct 24, 2023
Oct 24, 2023
Aug 17, 2024
Mar 5, 2025
Oct 24, 2023
Mar 5, 2025
Apr 4, 2024
Mar 5, 2025

Remix Template

A simple but feature rich Remix template.

npx create-remix@latest --template bryk-io/remix

Features and Utils

  • TailwindCSS: A utility-first CSS framework
  • Prettier: For automatic code formatting.
  • ESLint: For automatic code linting.
  • Vitest: For testing components and libraries.
  • Playwright: For end-to-end testing.

Testing

  • Individual components and utilities can be testes using Vitest. Test files included by default are **/*.test.{js,mjs,cjs,ts,mts,cts,jsx,tsx}.
  • End-to-end tests can be written using Playwright. Test files included by default are tests/*.spec.{js,ts,jsx,tsx}.

Development

From your terminal:

make dev

This starts your app in development mode, rebuilding assets on file changes.

Deployment

First, build your app for production:

make build

Then run the app in production mode:

make start

Now you'll need to pick a host to deploy it to.