-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c3b505
commit ee338f6
Showing
183 changed files
with
19,441 additions
and
18,363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,11 @@ node_modules | |
npm-debug.log | ||
README.md | ||
.next | ||
.git | ||
.git | ||
.github | ||
.turbo | ||
|
||
landing-page | ||
docs | ||
scripts | ||
wordpress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public-hoist-pattern[]=*prisma* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,37 @@ | ||
# https://github.com/vercel/turborepo/issues/215#issuecomment-1027058056 | ||
FROM node:16-slim AS base | ||
FROM node:18-slim AS base | ||
WORKDIR /app | ||
ARG SCOPE | ||
ENV SCOPE=${SCOPE} | ||
|
||
FROM base AS pruner | ||
RUN yarn global add turbo@1.2.9 | ||
COPY . . | ||
RUN turbo prune --scope="${SCOPE}" --docker | ||
|
||
FROM base AS installer | ||
COPY --from=pruner /app/out/json/ . | ||
COPY --from=pruner /app/out/yarn.lock ./yarn.lock | ||
RUN yarn install --frozen-lockfile | ||
RUN npm --global install pnpm | ||
|
||
FROM base AS builder | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
COPY --from=installer /app/ . | ||
COPY --from=pruner /app/out/full/ . | ||
COPY ./apps/${SCOPE}/.env.docker ./apps/${SCOPE}/.env.production | ||
COPY ./apps/${SCOPE}/.env.docker ./apps/${SCOPE}/.env.local | ||
RUN apt-get -qy update && apt-get -qy --no-install-recommends install openssl | ||
RUN yarn turbo run build --scope="${SCOPE}" --include-dependencies --no-deps | ||
RUN find . -name node_modules | xargs rm -rf | ||
RUN apt-get -qy update && apt-get -qy --no-install-recommends install openssl git | ||
COPY pnpm-lock.yaml .npmrc pnpm-workspace.yaml ./ | ||
RUN pnpm fetch | ||
ADD . ./ | ||
RUN pnpm install -r --offline | ||
RUN pnpm turbo run build --filter=${SCOPE}... | ||
|
||
FROM base AS runner | ||
WORKDIR /app | ||
ENV NODE_ENV production | ||
COPY ./packages/db/prisma ./prisma | ||
COPY --from=installer /app/node_modules ./node_modules | ||
COPY --from=builder /app/apps/${SCOPE}/next.config.js ./ | ||
COPY --from=builder /app/apps/${SCOPE}/public ./public | ||
COPY --from=builder /app/apps/${SCOPE}/package.json ./package.json | ||
COPY --from=builder /app/apps/${SCOPE}/.next/standalone ./ | ||
COPY --from=builder /app/apps/${SCOPE}/.next/static ./.next/static | ||
COPY --from=builder /app/apps/${SCOPE}/.env.docker ./.env.production | ||
RUN apt-get -qy update \ | ||
&& apt-get -qy --no-install-recommends install \ | ||
openssl \ | ||
&& apt-get autoremove -yq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
COPY ./packages/db/prisma ./prisma | ||
COPY ./apps/${SCOPE}/.env.docker ./apps/${SCOPE}/.env.production | ||
COPY --from=builder /app/node_modules ./node_modules | ||
COPY --from=builder /app/apps/${SCOPE}/public ./apps/${SCOPE}/public | ||
COPY --from=builder --chown=node:node /app/apps/${SCOPE}/.next/standalone ./ | ||
COPY --from=builder --chown=node:node /app/apps/${SCOPE}/.next/static ./apps/${SCOPE}/.next/static | ||
|
||
COPY env.sh ${SCOPE}-entrypoint.sh ./ | ||
RUN chmod +x ./"${SCOPE}"-entrypoint.sh \ | ||
RUN chmod +x ./${SCOPE}-entrypoint.sh \ | ||
&& chmod +x ./env.sh | ||
ENTRYPOINT ./"${SCOPE}"-entrypoint.sh | ||
ENTRYPOINT ./${SCOPE}-entrypoint.sh | ||
|
||
EXPOSE 3000 | ||
ENV PORT 3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
apps/builder/components/dashboard/annoucements/AnnoucementBanner.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
ee338f6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
builder-v2 – ./apps/builder
builder-v2-typebot-io.vercel.app
app.typebot.io
builder-v2-git-main-typebot-io.vercel.app
ee338f6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
docs – ./apps/docs
docs.typebot.io
docs-git-main-typebot-io.vercel.app
docs-typebot-io.vercel.app
ee338f6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
viewer-v2-alpha – ./apps/viewer
8jours.top
vhpage.cr8.ai
finplex.be
bt.id8rs.com
yobot.me
247987.com
bot.aws.bj
am.nigerias.io
bot.aipr.kr
sat.cr8.ai
an.nigerias.io
ar.nigerias.io
bot.lalmon.com
ticketfute.com
bot.artiweb.app
apr.nigerias.io
apo.nigerias.io
aso.nigerias.io
eventhub.com.au
chat.sureb4.com
sakuranembro.it
games.klujo.com
bot.piccinato.co
typebot.aloe.do
bot.upfunnel.art
faqs.nigerias.io
stan.vselise.com
feedback.ofx.one
kw.wpwakanda.com
clo.closeer.work
voicehelp.cr8.ai
typebot.aloe.bot
bot.agfunnel.tech
gentleman-shop.fr
bot.phuonghub.com
cares.urlabout.me
app.chatforms.net
bot.maitempah.com
fmm.wpwakanda.com
k1.kandabrand.com
lb.ticketfute.com
ov1.wpwakanda.com
andreimayer.com.br
ov2.wpwakanda.com
ov3.wpwakanda.com
dicanatural.online
bot.neferlopez.com
1988.bouclidom.com
goalsettingbot.com
zap.techadviser.in
this-is-a-test.com
bot.digitalbled.com
carsalesenquiry.com
bot.eventhub.com.au
forms.webisharp.com
bot.cotemeuplano.com
chat.hayurihijab.com
bot.ansuraniphone.my
order.maitempah.com
bium.gratirabbit.com
typebot.stillio.com
quest.wpwakanda.com
click.sevenoways.com
connect.growthguy.in
get.freebotoffer.xyz
abutton.wpwakanda.com
chat.missarkansas.org
aidigitalmarketing.kr
bot.meuesocial.com.br
bot.incusservices.com
cdd.searchcube.com.sg
bbutton.wpwakanda.com
sbutton.wpwakanda.com
bbutton.wpwwakanda.com
apply.ansuraniphone.my
c23111azqw.nigerias.io
form.searchcube.com.sg
felipewelington.com.br
kodawariab736.skeep.it
gcase.barrettamario.it
report.gratirabbit.com
info.clickasuransi.com
view.onlinebotdemo.xyz
resume.gratirabbit.com
83242573.actualizar.xyz
bot.blackboxtips.com.br
mainmenu.diddancing.com
bot.upgradesolutions.eu
91181264.your-access.one
subfooter.wpwakanda.com
signup.hypemarketing.in
survey.hypemarketing.in
hunterbot.saleshunter.ai
type.opaulovieira.com.br
form.sergiolimajr.com.br
aibot.angrybranding.co.uk
bot.aidigitalmarketing.kr
bot.blackboxsports.com.br
boyfriend-breakup.riku.ai
chat.ertcrebateportal.com
ee338f6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
landing-page-v2 – ./apps/landing-page
landing-page-v2-git-main-typebot-io.vercel.app
typebot.io
www.typebot.io
landing-page-v2-typebot-io.vercel.app
get-typebot.com
www.get-typebot.com
ee338f6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
viewer-v2 – ./apps/viewer
bergamo.store
yoda.riku.ai
app.yvon.earth
talk.gocare.io
bot.jesopizz.it
chat.hayuri.id
bots.bridge.ai
gollum.riku.ai
bot.tvbeat.it
bot.joof.it
bot.contakit.com
fitness.riku.ai
zap.fundviser.in
chatbot.matthesv.de
viewer.typebot.io
bot.rihabilita.it
bot.danyservice.it
88584434.therpm.club
demo.wemakebots.xyz
bot.dsignagency.com
92109660.therpm.club
bot.barrettamario.it
hello.advergreen.com
bot.digitalpointer.id
bot.eikju.photography
bot.coachayongzul.com
bot.ilmuseoaiborghi.it
bot.robertohairlab.it
criar.somaperuzzo.com
bot.outstandbrand.com
form.bridesquadapp.com
michaeljackson.riku.ai
bot.pratikmandalia.com
87656003.actualizar.xyz
88152257.actualizar.xyz
invite.bridesquadapp.com
bot.hotelplayarimini.it
91375310.actualizar.xyz
link.venturasuceder.com
arrivalx2.wpwakanda.com
bot.amicidisanfaustino.it
chat.thehomebuyersusa.com
forms.hiabhaykulkarni.com
typebot-viewer.vercel.app
bot.adventureconsulting.hu
casestudyemb.wpwakanda.com
herbalife.barrettamario.it
chat.atlasoutfittersk9.com
liveconvert.kandalearn.com
homepageonly.wpwakanda.com
mainmenu1one.wpwakanda.com
bot.polychromes-project.com
bot.pinpointinteractive.com
tarian.theiofoundation.org
bot.seidinembroseanchetu.it
liveconvert2.kandalearn.com
viewer-v2-typebot-io.vercel.app
bot.seidibergamoseanchetu.it
forms.escoladeautomacao.com.br
bot.studiotecnicoimmobiliaremerelli.it
viewer-v2-git-main-typebot-io.vercel.app