avinyc

Members
  • Posts

    61
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

avinyc's Achievements

Rookie

Rookie (2/14)

5

Reputation

1

Community Answers

  1. Yeah I don't have giphy running on my instance, so I'm just taking guesses here on how to help. For the variables, all of mine are uniquely generated for each one. Use openssl rand -base64 32 to generate a key and add it under NEXTAUTH_SECRET. Use openssl rand -base64 32 to generate a key and add it under CALENDSO_ENCRYPTION_KEY. And then another 2 times for the following new ones: Use openssl rand -base64 32 to generate a key and add it under CALCOM_WEBHOOK_SECRET Use openssl rand -base64 24 to generate a key and add it under CALCOM_APP_CREDENTIAL_ENCRYPTION_KEY
  2. Did you upgrade the giphy api to production? See instructions here: https://developers.giphy.com/docs/api If you generated the secret keys for CALENDSO_ENCRYPTION_KEY and NEXTAUTH_SECRET correctly, maybe try this section I saw in the sample template here: # - APP CREDENTIAL SYNC *********************************************************************************** # Used for self-hosters that are implementing Cal.com into their applications that already have certain integrations # Under settings/admin/apps ensure that all app secrets are set the same as the parent application # You can use: `openssl rand -base64 32` to generate one CALCOM_WEBHOOK_SECRET="" # This is the header name that will be used to verify the webhook secret. Should be in lowercase CALCOM_WEBHOOK_HEADER_NAME="calcom-webhook-secret" CALCOM_CREDENTIAL_SYNC_ENDPOINT="" # Key should match on Cal.com and your application # must be 24 bytes for AES256 encryption algorithm # You can use: `openssl rand -base64 24` to generate one CALCOM_APP_CREDENTIAL_ENCRYPTION_KEY=""
  3. Yep, i switched back to the latest tag and no prisma errors as well with the new variable added to the template. The duplicate values in common.json are annoying in the logs, but I don't think it is causing any performance issues. Let me know if you have any difficulty getting giphy or other apps running.
  4. I missed a note at the end of that issue, one commenter said a new variable needs to be added now: DATABASE_DIRECT_URL="postgresql://postgres:@localhost:5450/calendso" So we need to add this and keep the duplicate DATABASE_URL in our template also. Looks like this change happened 2 weeks ago, but I haven't tested to see if this allows things to run correctly after v.3.7.11.
  5. I started experiencing issues with the database and searched for the problem. I came across this issue on github: https://github.com/calcom/docker/issues/329 The recommendation is to switch the image calcom/cal.com:latest with image: calcom/cal.com:v3.7.11 until they can figure out why the container is failing. You were right to narrow down the problem starting with version v3.7.15 and I would stick to 3.7.11 for the time being. I downgraded and zero errors in my logs now, so this should be the image to stick with while troubleshooting how to get your container running correctly.
  6. Nope, I set up each one of them following the documentation and do not have the enterprise license. It's running self-hosted and free without any cost. The only one I couldn't set up was microsoft teams because it requires a work or school account. Here is the link to the documentation, but setting them up does not require you having a license: https://cal.com/docs/introduction/quick-start/self-hosting/install-apps My reverse proxy was set up using @SpaceInvaderOne's letsencrypt tutorial: It is now swag, but the setup should still work: The instructions have you set up a custom network for the proxy container to work properly, otherwise I don't think it will protect any of the traffic to your server. Bridge mode will work if you want to access it directly, but if you are exposing this to the world, you wouldn't want that open your server. If you haven't set up a reverse proxy, I would start there first.
  7. I use swag (formerly LetsEncrypt) as my reverse proxy. I attached my .conf file, just need to edit the server details and everything else is pretty much default. calcom.subdomain.conf
  8. I had to redact a lot of the fields, but this is what my calcom template looks like in unRaid:
  9. I think docker hub isn't showing those versions is because they came out at the same time and building the containers would have been a waste. I know the latest container works for me, but again there is another component that may be the culprit here. What version of postgresql are you running? I am on 15 (specifically 15.6 according to my logs) and have not upgraded to 16 yet.
  10. My repository is set as calcom/cal.com:latest So it's pulling the latest container from here: https://hub.docker.com/r/calcom/cal.com/tags I see the versions here don't match the date of the latest pull: https://github.com/calcom/docker/releases It's not recommended to use the latest tag but I leave it for some of my containers anyway. If I had to take guess based on the last pull it is probably the v3.7.17 image.
  11. It's telling you there is a missing table in your database, I am guessing the db is not set up correctly or got corrupted.
  12. I am not qualified to provide actual support, but as another user that has this working on his unraid server I am happy to share whatever I can to get more people running this container. It is a great application when working. I reached out to @Squid about why the template was removed from community apps and was told that it lacked support or project tags with applicable urls to the template. If the developers or anyone that maintains the templates wants to do that, it would return to community apps. @Tolete provided his XML template which should work for a manual install. You would need to follow the steps to add it that way and it should run. As for the prisma error, I found this link which suggests using this command in your console: npx prisma generate I don't know if you messed with the postgres settings so it might be safer to do a fresh install of a new DB. Here's a tutorial video that I used and should be enough to get it running again as long as the container install goes smoothly. Good luck!
  13. Glad you could get it running. If you need additional variables to add, they are all listed here: https://github.com/calcom/cal.com/blob/main/.env.example I had to throw in ALLOWED_HOSTNAMES and RESERVED_SUBDOMAINS I think to get the reverse proxy working correctly. The rest of them are related to the different apps they offer. The documentation was very clear to get them installed.
  14. Strange, I don't see it in community apps either now. I don't know what happened but the template is still listed in the link I posted previously. If you are comfortable with setting up the template manually, you can click on "Click Here To Get More Results From DockerHub" and install the official docker image and add the environment varibles yourself. I can help share details if it's helpful, but it is strange they removed it from CA for no reason.