Hi everyone! I'm trying to self-host <Cal.com>. I ...
# developers
d
Hi everyone! I'm trying to self-host Cal.com. I have had success with running it in dev mode using
yarn dev
but I can't build it using
yarn build
, which is a prerequisite to running it in prod mode using
yarn start
. The build process is stuck on the following step:
Copy code
@calcom/web:build: info  - Linting and checking validity of types...
Any ideas? I have tried repeating the process both on my dev machine (Fedora) and on a Ubuntu EC2 instance and I keep experiencing the same issue.
h
@Daniel Lee Try building it as
CI=1 yarn build
It skips linting and validation. I am not sure why at the moment but this approach has helped multiple people in the past