diff --git a/README.md b/README.md index 9f0d74d..4495e89 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,17 @@ # Twitter Clone + A literal Twitter Clone. It is made with Remix, Prisma and Tailwind CSS. + ## Running for dev or prod + Clone the repo, install dependencies, put secrets in .env, run the migration and start. + ``` git clone https://git.disroot.org/qwertyasdfgh/twitter-clone pnpm install -pnpm prisma migrate deploy/dev cp .env.example .env // edit the file!!! -pnpm start/dev +pnpm prisma migrate deploy/dev // deploy if prod, dev if dev +pnpm prisma generate +pnpm build // if prod +pnpm start/dev // start if prod, dev if dev ```