https://github.com/thainapires/schedulynx
Schedulynx is a scheduling application that syncs with your Google Calendar, allowing others to book time directly into your calendar with ease.
https://github.com/thainapires/schedulynx
api api-integration calendar fullstack google google-api google-calendar nextjs react scheduling typescript
Last synced: about 2 months ago
JSON representation
Schedulynx is a scheduling application that syncs with your Google Calendar, allowing others to book time directly into your calendar with ease.
- Host: GitHub
- URL: https://github.com/thainapires/schedulynx
- Owner: thainapires
- Created: 2025-03-12T22:47:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-03T02:16:12.000Z (about 1 year ago)
- Last Synced: 2025-07-23T00:43:58.129Z (11 months ago)
- Topics: api, api-integration, calendar, fullstack, google, google-api, google-calendar, nextjs, react, scheduling, typescript
- Language: TypeScript
- Homepage: https://schedulynx.vercel.app
- Size: 570 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Schedulynx 📅

Schedulynx is a scheduling app that syncs with your Google Calendar, allowing others to book time directly into your calendar with ease. It uses NextAuth.js for authentication, enabling users to log in via their Google account.
### Main points
- Syncs with Google Calendar
- Allows users to share their availability with others
- Automatically schedules meetings and events into the user's Google Calendar
- Google account login via NextAuth.js.
### Technology Stack
- React
- TypeScript
- Next.js
- NextAuth.js
- Google API
- Prisma (ORM)
Installation
1. Clone the repository:
```
git clone https://github.com/thainapires/schedulynx.git
cd schedulynx
```
2. Install dependencies:
```npm install```
3. Set up environment variables for Google authentication by creating a .env file with the following content:
```
DATABASE_URL="mysql://root:docker@localhost:3306/schedulynx"
# Google oAuth
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
NEXTAUTH_SECRET=
```
3. Start the development server:
```npm run dev```
Visualize the database with Prisma Studio
```npx prisma studio```
### Docker to run the mysql database
```docker run --name postgres -e POSTGRES_PASSWORD=docker -p 5432:5432 -d postgres```