Basic Concepts of Remix.js
Follow the steps below to set up the project locally.
- Make sure you have Node.js installed.
- npm (usually comes with Node.js)
-
Clone this repository
git clone https://github.com/yaldram/remix-basics.git cd remix-basics
-
Install dependencies
npm install
-
Run database migrations
npm run migrations:up
-
Seed the database
npm run seed:db
-
Start the development server
npm run dev
-
Visit the application Open your browser and go to
http://localhost:5173