-
Postgres Database: I recommend Supabase, Register a supabase account > Create a new project > Create a new database.
-
Supabase Storage: Your project > Create a new Bucket > Add this policy to be able upload images via our backend:
CREATE POLICY "<policy name>" ON storage.objects FOR INSERT TO public WITH CHECK (bucket_id = '<bucket-name>');
To run the project locally, follow these steps:
- Clone the project
git clone https://github.com/salaarkhan-dev/t3-twitter
- Copy the contents of the .env.example file into a new file named .env, then replace the values with your own.
- Install the project dependencies by running
npm install
- Push the Prisma schema to the database
npx prisma db push
- Build the project
npm run build
- Start the project
npm start