Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 953 Bytes

README.md

File metadata and controls

41 lines (34 loc) · 953 Bytes

SocialSphere

Social Media application built using T3 stack ( TRPC, NextJs, TypeScript Tailwind, Prisma).


Features

  • user authentication.
  • Images/ video upload
  • like/unlike posts.
  • follow/unfollow users.
  • comment on posts.

image

Getting Started

  1. Clone the repository to your local machine.
git clone https://github.com/himanshu8443/SocialSphere.git
  1. Set up the environment variables:
    Create .env in root and ./server folders check .env.example file of the respectable folder to get environment variables.

  2. Install the required packages.

cd SocialSphere
npm install
  1. Start server
cd server
npx prisma generate
cd ..
npm run dev:server
  1. Start client
npm run dev:client

Open http://localhost:3000 with your browser to see the result.