This can be done in two ways, either by forking/cloning the repo or by using this template to create a remix app
- Fork this repository
- Clone
starter-code
branch from the forked repository
git clone -b starter-code https://github.com/<your-username>/dnd-blog.git
npx create-remix@latest --template https://github.com/GDSCSRM/dnd-blog/tree/starter-code dnd-blog
cd dnd-blog
npm install
Make sure to include .env
file in the root directory with DATABASE_URL
before running the following command.
Alternatively you can copy the .env.example
cp .env.example .env
npm run db:migrate
npm run db:seed
npm run dev