Skip to content

Armadillidiid/reddit-clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ef89e1c Β· Jul 9, 2024
Jul 9, 2024
May 11, 2024
May 11, 2024
May 11, 2024
Apr 14, 2024
May 11, 2024
Dec 10, 2023
Dec 10, 2023
Apr 14, 2024
May 12, 2024
Dec 10, 2023
Apr 14, 2024
Apr 14, 2024
Apr 14, 2024
May 12, 2024
Apr 14, 2024
Dec 13, 2023
Jul 9, 2024
Jul 9, 2024
Dec 10, 2023
Dec 10, 2023
May 11, 2024

Repository files navigation

🧡 Threadit

A minimal Reddit clone built with Next.js

showcase

Features πŸ“

  • ⚑ Next.js with Server Actions
  • πŸ”₯ Type checking TypeScript
  • πŸ’Ž Integrate with Tailwind CSS and Shadcn UI
  • πŸ“‚ File upload with AWS S3
  • πŸ”’ Authentication with NextAuth
  • πŸ‘€ Social Auth (Google)
  • ♻️ Type-safe environment variables with T3 Env
  • ⌨️ Form with React Hook From
  • πŸ”΄ Validation library with Zod
  • βš“ Containerization with Docker
  • πŸ‘· Run deployment on pull request with GitHub Actions

Live Demo πŸ”΄

You can view a live demo by clicking HERE

Installation

To run the application on your local machine, follow these steps.

  1. Clone the repository to your local machine.

git clone https://github.com/Armadillidiid/reddit-clone.git
  1. Go to folder, and copy env-local-dev as .env.local

For NEXTAUTH_SECRET, use the openssl command to generate a random secret.

cd reddit-clone/
cp env-local-dev .env.local
  1. Setup authentication

Create a new OAuth 2.0 client ID in the Google Cloud Console. Add the client ID and client secret to the .env.local file.

NEXTAUTH_URL=http://localhost:3000
GOOGLE_ID=YOUR_GOOGLE_ID
GOOGLE_SECRET=YOUR_GOOGLE_SECRET
  1. Setup image upload

Create a new bucket in AWS S3. Add the bucket name, access key, and secret key to the .env.local file.

AWS_REGION=YOUR_AWS_REGION
AWS_BUCKET_NAME=YOUR_AWS_BUCKET_NAME
AWS_ACCESS_KEY_ID=YOUR_AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY
  1. Run the project.

docker compose up
  1. Open your browser and go to http://localhost:3000