Installation

Installing Remix-Breeze

  1. To create a new Remix-Breeze project, you can use the create-remix-breeze CLI:
npx create-remix-breeze@latest my-breeze-app
  1. Change directory into your app project:
cd my-breeze-app
  1. Setup your .env file:
touch .env
cp -i .env.example .env
  1. Install the dependencies:
npm install
  1. Generate the prisma client:
npx prisma db push
npx prisma generate
  1. Run the seed command to seed your database with some initial data:
npx prisma db seed
  1. That will create the user and admin roles in the Role table. And the follwing test user:
  • Test User
    • Email: user@test.com
    • Password: Password@123
  1. Now you should be able to run your dev server with npm run dev and open your app in the browser.
npx run dev
To see your database tables and interact with them, you can use the prisma studio by running
npx prisma studio

What's Next ?

Docs and examples licensed under MIT