Compare commits

..

1 Commits

Author SHA1 Message Date
actions-user
ec744ac64a tag version Cal.com version v5.2.1 2025-04-17 00:07:16 +00:00
5 changed files with 7 additions and 6 deletions

View File

@@ -29,12 +29,11 @@ COPY calcom/packages ./packages
COPY calcom/tests ./tests
RUN yarn config set httpTimeout 1200000
RUN npx turbo prune --scope=@calcom/web --scope=@calcom/trpc --docker
RUN npx turbo prune --scope=@calcom/web --docker
RUN yarn install
RUN yarn db-deploy
RUN yarn --cwd packages/prisma seed-app-store
# Build and make embed servable from web/public/embed folder
RUN yarn workspace @calcom/trpc run build
RUN yarn --cwd packages/embeds/embed-core workspace @calcom/embed-core run build
RUN yarn --cwd apps/web workspace @calcom/web run build

View File

@@ -52,7 +52,7 @@ If you are evaluating Cal.com or running with minimal to no modifications, this
1. Clone calcom/docker
```bash
git clone --recursive https://github.com/calcom/docker.git
git clone https://github.com/calcom/docker.git
```
2. Change into the directory

2
calcom

Submodule calcom updated: eedef35d02...cae8470350

View File

@@ -1,4 +1,5 @@
# Use postgres/example user/password credentials
version: '3.8'
volumes:
database-data:

View File

@@ -10,6 +10,7 @@ fi
# Only peform action if $FROM and $TO are different.
echo "Replacing all statically built instances of $FROM with $TO."
for file in $(egrep -r -l "${FROM}" apps/web/.next/ apps/web/public/); do
sed -i -e "s|$FROM|$TO|g" "$file"
find apps/web/.next/ apps/web/public -type f |
while read file; do
sed -i "s|$FROM|$TO|g" "$file"
done