Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hangton-code/threads-clone
This is a clone application of Meta's new-released Threads.
https://github.com/hangton-code/threads-clone
cloudinary instagram meta nextauth nextjs13 prisma shadcn-ui threads typescript
Last synced: 1 day ago
JSON representation
This is a clone application of Meta's new-released Threads.
- Host: GitHub
- URL: https://github.com/hangton-code/threads-clone
- Owner: Hangton-Code
- Created: 2023-07-30T10:46:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-16T17:21:06.000Z (4 months ago)
- Last Synced: 2024-07-17T15:17:01.973Z (4 months ago)
- Topics: cloudinary, instagram, meta, nextauth, nextjs13, prisma, shadcn-ui, threads, typescript
- Language: TypeScript
- Homepage: https://threads.hangton.me
- Size: 279 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
This is a clone application of Meta's new-released [Threads](https://www.threads.net/).
# Environment Variables
Paste them on the `.env` file in the root folder and modify them as your preferences
```
# Prisma
DATABASE_URL="mysql://{user}:{password}@{host}:{port}/{database_name}"# Google OAuth & Next-Auth
GOOGLE_CLIENT_ID="{GOOGLE_OAUTH_CLIENT_ID}"
GOOGLE_CLIENT_SECRET="{GOOGLE_OAUTH_CLIENT_SECRET}"
NEXTAUTH_SECRET="{random_string}"
NEXTAUTH_URL="https://localhost:3000/api/auth"# Global Variable
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
NEXT_PUBLIC_SITE_DOMAIN="localhost:3000"# Cloudinary
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME="{CLOUDINARY_CLOUD_NAME}"
NEXT_PUBLIC_CLOUDINARY_API_KEY="{CLOUDINARY_API_KEY}"
CLOUDINARY_API_SECRET="{CLOUDINARY_API_SECRET}"
```