欢迎使用 Remix + Vite + shadcn/ui!

📖 请参阅 Remix 文档Remix Vite 文档,了解支持的功能的详细信息。

开始使用

Node 服务器

npx create-remix@latest --template jacob-ebey/remix-shadcn

Cloudflare Pages

npx create-remix@latest --template https://github.com/jacob-ebey/remix-shadcn/tree/cloudflare

或者,对于一个更完善的模板,具有登录流程和一个由 Drizzle ORM 支持的 SQLite 数据库

Node 服务器

npx create-remix@latest --template https://github.com/jacob-ebey/remix-shadcn/tree/drizzle

Cloudflare Pages

npx create-remix@latest --template https://github.com/jacob-ebey/remix-shadcn/tree/drizzle-cloudflare

内置主题切换器

image

image

开发

运行 Vite 开发服务器

npm run dev

部署

首先,构建你的应用程序以进行生产

npm run build

设置你的环境

NODE_ENV='production'

然后在生产模式下运行应用程序

npm start

现在你需要选择一个主机来部署它。

DIY

如果你熟悉部署 Node 应用程序,内置的 Remix 应用程序服务器已为生产环境做好准备。

确保部署 npm run build 的输出和服务器

  • server.js
  • build/server
  • build/client

请查看提供的 Dockerfile,以获取有关如何配置生产环境的更多详细信息。