https://cal.com logo
Join Slack
Powered by
# developers
  • g

    Gaurang Delavadiya

    04/10/2023, 7:05 AM
    Hello Team, Attendee is getting two email when appointment has been booked, First from: Original Email Second from: calendar-server.bounces.google.com Can anyone help me here?
  • l

    Liam Murray

    04/11/2023, 1:13 PM
    Hey everyone, apologies for the simple question but I was having trouble finding and answer anywhere. What is the CRON API key supposed to be?
  • b

    Ben Hybert

    04/11/2023, 1:15 PM
    for the Cron app i can assume?
  • b

    Ben Hybert

    04/11/2023, 1:16 PM
    https://cron.com/
  • l

    Liam Murray

    04/11/2023, 1:17 PM
    I don't think so, right above the line for it in the .env file it says
    Copy code
    # ApiKey for cronjobs
  • l

    Liam Murray

    04/11/2023, 1:18 PM
    Just not sure whether this is something related to Vercel CRON Jobs or something else.
  • b

    Ben Hybert

    04/11/2023, 1:21 PM
    ohhh yeah, could be for Vercel - I don’t have it used at all in my .env file
  • l

    Liam Murray

    04/11/2023, 1:34 PM
    When deploying on vercel via the deploy to vercel button its marked as a required variable, just not sure where I would get the needed key since its not clear.
  • k

    Kornel Szabo

    04/12/2023, 7:47 AM
    Hey guys! Could it be that the email service is down? I tried booking a test meeting twice and it seems to not have sent the emails. Has anyone encountered this before?
    p
    • 2
    • 5
  • g

    Gamer Mount

    04/13/2023, 11:04 AM
    @Peer can you please check DM?
  • e

    Eduard Stere

    04/13/2023, 3:35 PM
    image.png
    p
    a
    +2
    • 5
    • 10
  • p

    Peer

    04/14/2023, 11:09 AM
    anyone else having issues with GTM? https://app.cal.com/apps/gtm
    s
    h
    i
    • 4
    • 18
  • e

    Eduard Stere

    04/15/2023, 8:19 PM
    Anyone knows how to fix this paywall on self-hosted instances?
    l
    p
    • 3
    • 4
  • i

    Imeth Gunawardena

    04/17/2023, 12:17 PM
    Hey everyone, how do i host cal.com on an aws instance
    l
    • 2
    • 1
  • i

    Imeth Gunawardena

    04/17/2023, 12:56 PM
    is it possible to deploy on aws instead of heroku?
  • s

    Shipra

    04/18/2023, 6:23 AM
    Hi All, can anyone guide us to connect cal.com with Firestore(Firebase)? what to fill here to link our database so that we can use REST APIs to create users
  • v

    Vaibhav Bisht

    04/18/2023, 2:46 PM
    Hi all, I am vaibhav, and want to contribute to cal.com. I would like to know if there is any channel for contributors or anything like that. Hoping to learn a lot for ya’ll.
    p
    • 2
    • 2
  • c

    Christopher Kindl

    04/19/2023, 1:28 PM
    Hi all, Chris here from tremor.so 👋 Happy to get feedback for the Tremor components Cal.com's uses in its product 🙂
    p
    a
    • 3
    • 6
  • d

    Dmitry Maykov

    04/19/2023, 2:39 PM
    Hey everyone! Is there a way to check if team event type has webhook with API? I want to make sure that each of them has it and to add it if it’s not there
    • 1
    • 1
  • j

    Jan Piotrowski

    04/22/2023, 12:20 AM
    When I use the
    Vercel
    deploy button from the README, what are the correct values for the required env variables
    NEXT_PUBLIC_WEBAPP_URL
    and
    NEXTAUTH_URL
    ? For the initial deployment I can just leave them on
    localhost:3000
    , but later that value leads to problems like the logo not loading 😕
    • 1
    • 1
  • j

    Jan Piotrowski

    04/22/2023, 12:22 AM
    Another Vercel question, when/how am I supposed to run
    yarn workspace @calcom/prisma db-deploy
    to migrate my database? (Workaround I found was putting
    yarn workspace @calcom/prisma db-deploy &&
    in front of the suggest build command - that initially migrated the database, and now makes sure the schema is up to date. But is that correct?)
    p
    • 2
    • 3
  • j

    Jan Piotrowski

    04/22/2023, 12:23 AM
    And a question about setup: The README describes using Prisma Studio to create the initial user: https://github.com/calcom/cal.com#setting-up-your-first-user But it seems accessing the app itself also leads into a nice wizard experience to create an admin user and a normal user. Is there a difference between these approaches (besides convenience)? Which one should I do and why? (Are the docs outdated?)
    p
    • 2
    • 3
  • v

    Vaibhav Bisht

    04/22/2023, 11:41 AM
    Hi, I have successfully setup cal.com webapp locally for contribution. But I have some questions: • I want to learn more about it’s usage and everything. I went to the youtube channel but not satisfied. Is there anywhere else I can go to get more understanding. • Also are there any weekly contributors meeting (anything as such) where I can participate to.
    p
    • 2
    • 4
  • v

    Vaibhav Bisht

    04/22/2023, 12:34 PM
    I am not able to access sync linear. Is it for the internal teams only?
    p
    • 2
    • 1
  • v

    Vaibhav Bisht

    04/22/2023, 4:10 PM
    @Peer the README part for setting up DB suggests
    heroku
    which is not a good choice anymore (since no support for free tier). So I believe that for development purposes we can suggest on using local DB or using something like
    Render
    .
    p
    • 2
    • 2
  • v

    Vaibhav Bisht

    04/22/2023, 6:24 PM
    I am trying to setup my google calendar API. And after I run this yarn command :
    Copy code
    yarn seed-app-store
    This following error is coming:
    Copy code
    PrismaClientInitializationError:
    Invalid `prisma.app.upsert()` invocation in
    /Users/NoobDev/Documents/open-source/cal.com/packages/prisma/seed-app-store.ts:160:20
    
      157   keys?: Prisma.AppCreateInput["keys"],
      158   isTemplate?: boolean
      159 ) {
    → 160   await prisma.app.upsert(
    error: Environment variable not found: DATABASE_URL.
      -->  schema.prisma:6
       |
     5 |   provider = "postgresql"
     6 |   url      = env("DATABASE_URL")
       |
    
    Validation Error Count: 1
        at Zr.handleRequestError (/Users/NoobDev/Documents/open-source/cal.com/node_modules/@prisma/client/runtime/library.js:171:6688)
        at Zr.handleAndLogRequestError (/Users/NoobDev/Documents/open-source/cal.com/node_modules/@prisma/client/runtime/library.js:171:5948)
        at /Users/NoobDev/Documents/open-source/cal.com/node_modules/@prisma/client/runtime/library.js:174:3087
        at async /Users/NoobDev/Documents/open-source/cal.com/node_modules/@prisma/client/runtime/library.js:174:3268
        at async t._executeRequest (/Users/NoobDev/Documents/open-source/cal.com/node_modules/@prisma/client/runtime/library.js:174:10726)
        at async t._request (/Users/NoobDev/Documents/open-source/cal.com/node_modules/@prisma/client/runtime/library.js:174:10455)
        at async createApp (/Users/NoobDev/Documents/open-source/cal.com/packages/prisma/seed-app-store.ts:160:3)
        at async main (/Users/NoobDev/Documents/open-source/cal.com/packages/prisma/seed-app-store.ts:174:3) {
      clientVersion: '4.11.0',
      errorCode: undefined
    }
    • 1
    • 1
  • v

    Vaibhav Bisht

    04/23/2023, 6:33 AM
    Hi guys, I’ve added a new issue for Refactoring
    README.md
    . I would like to request 🙏 all developers to check this issue (https://github.com/calcom/cal.com/issues/8467) and suggest me additional things that needs to be updated in the
    README.md
    file. As this will be super helpful for newcomers
    p
    • 2
    • 4
  • v

    Vaibhav Bisht

    04/24/2023, 4:58 AM
    Hi, I am trying to integrate google calendar following the README ( with some minor updates) but after setting everything I am getting a skeleton loader in my
    settings/my-account/calendars
    my .env.appStore
    Copy code
    GOOGLE_API_CREDENTIALS= {"web":{"client_id":"my-client-id","project_id":"id","auth_uri":"<https://accounts.google.com/o/oauth2/auth>","token_uri":"<https://oauth2.googleapis.com/token>","auth_provider_x509_cert_url":"<https://www.googleapis.com/oauth2/v1/certs>","client_secret":"secret,"redirect_uris":["<http://localhost:3001/api/auth/callback/google>","<http://localhost:3001/api/integrations/googlecalendar/callback>"],"javascript_origins":["<http://localhost:3001>"]}}
    p
    • 2
    • 2
  • v

    Vaibhav Bisht

    04/24/2023, 4:59 AM
    The query
  • v

    Vaibhav Bisht

    04/24/2023, 4:59 AM
    The problem seems to be coming form here. path:
    packages/trpc/server/routers/viewer.tsx
1...1819202122Latest