The "call" project is a full-stack scheduling application integrated with Google Calendar. It allows you to schedule appointments with other users. Simply create an account on the app and share the link to your calendar. Then, people can schedule a time with you, and the appointment will appear on your Google Calendar.
git clone https://github.com/manoguii/call.git
- To run the project locally:
- First, you need to create an account on the platforms with which the project integrates. The project uses Google for user authentication. If you have any doubts, consult the documentation of the tools.
- Create a
.env.local
file in the project's root directory and fill in the environment variables as shown in.env.example
. - Install dependencies:
pnpm install
- Create the local database:
docker run --name mysql -e MYSQL_ROOT_PASSWORD=docker -p 3306:3306 mysql:latest
- Run the migrations:
pnpm exec prisma migrate dev
- Execute the application:
pnpm dev
- Access
http://localhost:3000
Some technologies used in the construction of the application.