├── _routes.json ├── og_cn.jpg ├── og_en.jpg ├── og_ja.jpg ├── public ├── og.jpg ├── dify.png ├── google5a264f3acb0cfce4.html ├── importStep.webp ├── robots.txt ├── nodeIcon │ ├── tool.svg │ ├── iteration-start.svg │ ├── http-request.svg │ ├── if-else.svg │ ├── knowledge-retrieval.svg │ ├── default.svg │ ├── question-classifier.svg │ ├── answer.svg │ ├── code.svg │ ├── end.svg │ ├── assigner.svg │ ├── variable-aggregator.svg │ ├── iteration.svg │ └── llm.svg └── favicon.svg ├── .devcontainer └── devcontainer.json ├── src ├── components │ ├── ui │ │ ├── Card.astro │ │ ├── SectionTitle.astro │ │ ├── Banner.astro │ │ ├── AlertModal.astro │ │ ├── Alert.astro │ │ ├── Entrance.astro │ │ ├── TeamCard.astro │ │ ├── Breadcrumbs.astro │ │ ├── Skeleton.astro │ │ ├── DiscoverCard.astro │ │ └── PrivateHostedToogle.astro │ ├── sections │ │ ├── Section.astro │ │ ├── Process.astro │ │ ├── Testimonials.astro │ │ ├── Sponsors.astro │ │ ├── UploadEntranceBelow.astro │ │ └── UploadEntrance.astro │ ├── flow │ │ └── CustomNode_Landing.jsx │ └── seo │ │ └── Seo.astro ├── styles │ └── workflowLangding.css ├── assets │ ├── pics │ │ ├── background.jpg │ │ ├── profile-in.svg │ │ ├── company-logo2.svg │ │ └── feature2.svg │ ├── minus.svg │ ├── chevron.svg │ ├── bars.svg │ ├── icon1.svg │ ├── icon2.svg │ ├── icon3.svg │ ├── github.svg │ ├── icon4.svg │ ├── icon5.svg │ ├── icon7.svg │ ├── icon6.svg │ ├── icon8.svg │ ├── icon9.svg │ ├── instagram.svg │ └── logo-alt.svg ├── data │ ├── blog │ │ ├── 001 │ │ │ ├── HEROIMAGE.jpg │ │ │ ├── rebranding_diflowy_01.jpg │ │ │ ├── rebranding_diflowy_02.jpg │ │ │ ├── rebranding_diflowy_03.jpg │ │ │ ├── rebranding_diflowy_04.jpg │ │ │ ├── rebranding_diflowy_05.jpg │ │ │ └── rebranding_diflowy_06.jpg │ │ ├── 002 │ │ │ ├── HEROIMAGE.jpg │ │ │ ├── how_to_share_file_with_members-en.jpg │ │ │ ├── how_to_share_file_with_members-ja.jpg │ │ │ ├── how_to_share_file_with_members-zh.jpg │ │ │ ├── how_to_create_workspace_in_Diflowy-en.jpg │ │ │ ├── how_to_create_workspace_in_Diflowy-ja.jpg │ │ │ ├── how_to_create_workspace_in_Diflowy-zh.jpg │ │ │ ├── how_to_invite_members_to_workspace_in_Diflowy-en.jpg │ │ │ ├── how_to_invite_members_to_workspace_in_Diflowy-ja.jpg │ │ │ └── how_to_invite_members_to_workspace_in_Diflowy-zh.jpg │ │ └── 003 │ │ │ └── HEROIMAGE.jpg │ └── siteData.json ├── icons │ ├── lightning.svg │ ├── download.svg │ ├── login.svg │ ├── import.svg │ ├── logout.svg │ ├── user.svg │ ├── newMember.svg │ ├── twitter.svg │ ├── like.svg │ ├── google.svg │ ├── language.svg │ ├── update.svg │ ├── security.svg │ ├── share.svg │ ├── rocket.svg │ ├── facebook.svg │ ├── view.svg │ ├── version.svg │ ├── youtube.svg │ ├── bars.svg │ ├── github.svg │ ├── linkedin.svg │ └── discord.svg ├── types │ └── astro-i18next.d.ts ├── utils │ ├── slugify.js │ ├── lenis.js │ └── jsonLD.js ├── env.d.ts ├── pages │ ├── blog │ │ ├── [...slug].astro │ │ ├── index.astro │ │ └── tags │ │ │ └── [tag].astro │ ├── ar │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── de │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── es │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── fr │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── it │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── ja │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── ko │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── pt │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── ru │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── zh │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── zh-Hant │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ ├── index.astro │ │ │ └── tags │ │ │ │ └── [tag].astro │ │ ├── index.astro │ │ ├── 404.astro │ │ └── upload.astro │ ├── index.astro │ ├── 404.astro │ └── upload.astro ├── content │ ├── blog │ │ ├── diflowy-christmas-gift-free-team-membership-zh.md │ │ ├── diflowy-christmas-gift-free-team-membership-ja.md │ │ ├── diflowy-christmas-gift-free-team-membership-en.md │ │ ├── introducing-diflowy-community-and-features-zh.md │ │ └── introducing-diflowy-community-and-features-ja.md │ └── config.ts └── layouts │ └── MainHead.astro ├── astro-i18next.config.mjs ├── tsconfig.json ├── .gitignore ├── functions ├── api │ ├── logout.ts │ ├── login │ │ ├── github │ │ │ └── index.ts │ │ └── google │ │ │ └── index.ts │ └── auth.ts ├── jwtUtils.ts ├── env.d.ts ├── crypto.ts └── planUtils.ts ├── wrangler.toml ├── astro.config.mjs ├── LICENSE ├── package.json ├── tailwind.config.mjs ├── README_CN.md └── README_JP.md /_routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "include": ["/api/*"] 4 | } -------------------------------------------------------------------------------- /og_cn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-dalii/diflowy/HEAD/og_cn.jpg -------------------------------------------------------------------------------- /og_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-dalii/diflowy/HEAD/og_en.jpg -------------------------------------------------------------------------------- /og_ja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-dalii/diflowy/HEAD/og_ja.jpg -------------------------------------------------------------------------------- /public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-dalii/diflowy/HEAD/public/og.jpg -------------------------------------------------------------------------------- /public/dify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-dalii/diflowy/HEAD/public/dify.png -------------------------------------------------------------------------------- /public/google5a264f3acb0cfce4.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google5a264f3acb0cfce4.html -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { "image": "mcr.microsoft.com/devcontainers/universal:2" } 2 | -------------------------------------------------------------------------------- /src/components/ui/Card.astro: -------------------------------------------------------------------------------- 1 |
8 | {description} 9 |
10 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |28 | {t("uploadpage.loginhint")} 29 |
30 | 34 | 35 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |标签为: {tag} 的所有文章
42 |22 | 🌐 {t("uploadpage.publicmode")}(Default) 24 |
25 | 32 |🔒 {t("uploadpage.privatemode")}
33 |