This is an opinionated project starter and reference that allows teams to ship their ideas to production faster and on a more stable foundation based on the experience of Kent C. Dodds and contributors.
Learn more about Remix Stacks.
npx create-remix@latest --typescript --install --template epicweb-dev/epic-stack
With that context, here are a few things you get today:
- Remix is the Web Framework of choice
- Fly app deployment with Docker
- Multi-region, distributed, production-ready SQLite Database with LiteFS.
- Healthcheck endpoint for Fly backups region fallbacks
- Grafana Dashboards of the running app
- GitHub Actions with testing and deploy on merge for both production and staging environments
- Email/Password Authentication with cookie-based sessions
- Transaction email with Mailgun and forgot password/password reset support.
- Progressively Enhanced and fully type safe forms with Conform
- Database ORM with Prisma
- Role-based User Permissions.
- Custom built image hosting
- Caching via cachified: Both in-memory and SQLite-based (with better-sqlite3)
- Styling with Tailwind
- An excellent, customizable component library with Radix UI
- End-to-end testing with Playwright
- Local third party request mocking with MSW
- Unit testing with Vitest and Testing Library with pre-configured Test Database
- Code formatting with Prettier
- Linting with ESLint
- Static Types with TypeScript
- Runtime schema validation with zod
And that’s what we have today, here are some things that will likely find their way into the Epic Stack in the future:
- Powerful, yet simple sitemap control
- Error monitoring with Sentry
- Ecommerce support with Stripe
- Ethical site analytics with fathom
- Internationalization
- Image optimization route and component
- Feature flags
- Light/Dark/System mode (without a flash of incorrect theme)
- Documentation on production data seeding process
Not a fan of bits of the stack? Fork it, change it, and use
npx create-remix --template your/repo
! Make it your own.
-
Initial setup:
npm run setup
-
Start dev server:
npm run dev
This starts your app in development mode, rebuilding assets on file changes.
The database seed script creates a new user with some data you can use to get started:
- Username:
kody
- Password:
kodylovesyou
This is a pretty simple note-taking app, but it's a good example of how you can build a full stack app with Prisma and Remix. The main functionality is creating users, logging in and out, and creating and deleting notes.
The Epic Stack comes with a GitHub Action that handles automatically deploying your app to production and staging environments.
Prior to your first deployment, you'll need to do a few things:
-
Sign up and log in to Fly
fly auth signup
Note: If you have more than one Fly account, ensure that you are signed into the same account in the Fly CLI as you are in the browser. In your terminal, run
fly auth whoami
and ensure the email matches the Fly account signed into the browser.Note: The following instructions will be improved soon. Eventually most of these steps will be replaced with a simple
fly launch
command which will prompt you for what you need. For now the steps below are manual.Warning: This template is currently only configured to work for Fly v1 apps. If you just created your account you are probably running on Fly v2 which is ultimately preferable, but will require a few changes. This is temporary and will be fixed soon. See #22 for more info.
-
Create two apps on Fly, one for staging and one for production:
fly apps create epic-stack-template fly apps create epic-stack-template-staging
Note: Make sure this name matches the
app
set in yourfly.toml
file. Otherwise, you will not be able to deploy.- Initialize Git.
git init
-
Create a new GitHub Repository, and then add it as the remote for your project. Do not push your app yet!
git remote add origin <ORIGIN_URL>
-
Add a
FLY_API_TOKEN
to your GitHub repo. To do this, go to your user settings on Fly and create a new token, then add it to your repo secrets with the nameFLY_API_TOKEN
. -
Add a
SESSION_SECRET
,ENCRYPTION_SECRET
, andINTERNAL_COMMAND_TOKEN
to your fly app secrets, to do this you can run the following commands:fly secrets set SESSION_SECRET=$(openssl rand -hex 32) ENCRYPTION_SECRET=$(openssl rand -hex 32) INTERNAL_COMMAND_TOKEN=$(openssl rand -hex 32) --app epic-stack-template fly secrets set SESSION_SECRET=$(openssl rand -hex 32) ENCRYPTION_SECRET=$(openssl rand -hex 32) INTERNAL_COMMAND_TOKEN=$(openssl rand -hex 32) --app epic-stack-template-staging
If you don't have openssl installed, you can also use 1Password to generate a random secret, just replace
$(openssl rand -hex 32)
with the generated secret. -
Create an account on Mailgun. (Can be deferred to later)
NOTE: this is an optional step. During development the emails will be logged to the terminal and in production if you haven't set the proper environment variables yet you will get a warning until you set the environment variables.
Create a Sending API Key (find it at
https://app.mailgun.com/app/sending/domains/YOUR_SENDING_DOMAIN/sending-keys
replacingYOUR_SENDING_DOMAIN
with your sending domain) and setMAILGUN_DOMAIN
andMAILGUN_SENDING_KEY
environment variables in both prod and staging:fly secrets set MAILGUN_DOMAIN="mg.example.com" MAILGUN_SENDING_KEY="some-api-token-with-dashes" --app epic-stack-template fly secrets set MAILGUN_DOMAIN="mg.example.com" MAILGUN_SENDING_KEY="some-api-token-with-dashes" --app epic-stack-template-staging
-
Create a persistent volume for the sqlite database for both your staging and production environments. Run the following (feel free to change the GB size based on your needs):
fly volumes create data --size 1 --app epic-stack-template fly volumes create data --size 1 --app epic-stack-template-staging
Now that everything is set up you can commit and push your changes to your repo.
Every commit to your main
branch will trigger a deployment to your production
environment, and every commit to your dev
branch will trigger a deployment to
your staging environment.
The sqlite database lives at /data/sqlite.db
in the deployed application. You
can connect to the live database by running fly ssh console -C database-cli
.
We use GitHub Actions for continuous integration and deployment. Anything that
gets into the main
branch will be deployed to production after running
tests/build/etc. Anything in the dev
branch will be deployed to staging.
We use Playwright for our End-to-End tests in this project. You'll find those in
the tests
directory. As you make changes, add to an existing file or create a
new file in the tests
directory to test your changes.
To run these tests in development, run npm run test:e2e:dev
which will start
the dev server for the app and run Playwright on it.
We have a fixture for testing authenticated features without having to go through the login flow:
test('my test', async ({ page, login }) => {
const user = await login()
// you are now logged in
})
We also auto-delete the user at the end of your test. That way, we can keep your local db clean and keep your tests isolated from one another.
For lower level tests of utilities and individual components, we use vitest
.
We have DOM-specific assertion helpers via
@testing-library/jest-dom
.
This project uses TypeScript. It's recommended to get TypeScript set up for your
editor to get a really great in-editor experience with type checking and
auto-complete. To run type checking across the whole project, run
npm run typecheck
.
This project uses ESLint for linting. That is configured in .eslintrc.js
.
We use Prettier for auto-formatting in this project.
It's recommended to install an editor plugin (like the
VSCode Prettier plugin)
to get auto-formatting on save. There's also a npm run format
script you can
run to format all files in the project.