Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FlowiseAI #1014

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Add FlowiseAI #1014

wants to merge 1 commit into from

Conversation

michael-dm
Copy link

☑️ Self Check before Merge

  • I have tested the template using the method described in README.md thoroughly
  • I have ensured that I put as much default values as possible (except passwords) to ensure minimum effort required for end users to get started.
  • I have ensured that I am not using the "latest" tag as this tag is dynamically changing and might break the one-click app. Use a fixed version.
  • I have made sure that instructions.start and instructions.end are clear and self-explanatory.
  • Icon is added as a png file to the logos directory.
  • I've executed the checks if necessary by running npm ci && npm run validate_apps && npm run formatter
  • I will take responsibility addressing any issues that arises as a result of this PR (maintaining this app).

@githubsaturn
Copy link
Collaborator

Thanks! Looks like it's lacking the logo.

@malipetek
Copy link

Hello, I used this and also added a postgres to use internally for embeddings. Could we consider adding a db to it?

captainVersion: 4
services:
  $$cap_appname-postgres:
    image: ankane/pgvector
    environment:
      POSTGRES_USER: myuser
      POSTGRES_PASSWORD: mypassword
      POSTGRES_DB: mydb
    volumes:
      - $$cap_appname-db-data:/var/lib/postgresql/data
    caproverExtra:
      notExposeAsWebApp: 'true'

  $$cap_appname:
    restartPolicy: never
    environment:
      DATABASE_URL: postgres://myuser:mypassword@postgres:5432/mydb
      FLOWISE_USERNAME: $$cap_flowise_username
      FLOWISE_PASSWORD: $$cap_flowise_password
    caproverExtra:
      containerHttpPort: 3000
      dockerfileLines:
        - FROM flowiseai/flowise:$$cap_flowise_version
        - CMD /bin/sh -c "sleep 3; flowise start"
    volumes:
      - $$cap_appname-db-data:/root/.flowise

caproverOneClickApp:
  variables:
    - id: $$cap_flowise_version
      label: Flowise version
      defaultValue: '1.4.3'
      description: Checkout their docker page for the valid tags https://hub.docker.com/r/flowiseai/flowise/tags
      validRegex: /^([^\s^\/])+$/
    - id: $$cap_flowise_username
      label: Flowise Username
      description: 'Your Flowise username'
    - id: $$cap_flowise_password
      label: Flowise Password
      description: 'Your Flowise password'
  instructions:
    start: >-
      Flowise is a powerful AI tool. Before you start, make sure you have all your environment variables ready to input.
    end: >-
      Your Flowise app is now deployed and running!
  displayName: 'Flowise'
  description: 'Flowise AI Tool'
  documentation: 'https://github.com/FlowiseAI/Flowise'

@gutomec
Copy link

gutomec commented Jan 7, 2024

Hello, I used this and also added a postgres to use internally for embeddings. Could we consider adding a db to it?

captainVersion: 4
services:
  $$cap_appname-postgres:
    image: ankane/pgvector
    environment:
      POSTGRES_USER: myuser
      POSTGRES_PASSWORD: mypassword
      POSTGRES_DB: mydb
    volumes:
      - $$cap_appname-db-data:/var/lib/postgresql/data
    caproverExtra:
      notExposeAsWebApp: 'true'

  $$cap_appname:
    restartPolicy: never
    environment:
      DATABASE_URL: postgres://myuser:mypassword@postgres:5432/mydb
      FLOWISE_USERNAME: $$cap_flowise_username
      FLOWISE_PASSWORD: $$cap_flowise_password
    caproverExtra:
      containerHttpPort: 3000
      dockerfileLines:
        - FROM flowiseai/flowise:$$cap_flowise_version
        - CMD /bin/sh -c "sleep 3; flowise start"
    volumes:
      - $$cap_appname-db-data:/root/.flowise

caproverOneClickApp:
  variables:
    - id: $$cap_flowise_version
      label: Flowise version
      defaultValue: '1.4.3'
      description: Checkout their docker page for the valid tags https://hub.docker.com/r/flowiseai/flowise/tags
      validRegex: /^([^\s^\/])+$/
    - id: $$cap_flowise_username
      label: Flowise Username
      description: 'Your Flowise username'
    - id: $$cap_flowise_password
      label: Flowise Password
      description: 'Your Flowise password'
  instructions:
    start: >-
      Flowise is a powerful AI tool. Before you start, make sure you have all your environment variables ready to input.
    end: >-
      Your Flowise app is now deployed and running!
  displayName: 'Flowise'
  description: 'Flowise AI Tool'
  documentation: 'https://github.com/FlowiseAI/Flowise'

Thank you @malipetek! It works for me.

@Mkallday
Copy link

Hello, I used this and also added a postgres to use internally for embeddings. Could we consider adding a db to it?

captainVersion: 4
services:
  $$cap_appname-postgres:
    image: ankane/pgvector
    environment:
      POSTGRES_USER: myuser
      POSTGRES_PASSWORD: mypassword
      POSTGRES_DB: mydb
    volumes:
      - $$cap_appname-db-data:/var/lib/postgresql/data
    caproverExtra:
      notExposeAsWebApp: 'true'

  $$cap_appname:
    restartPolicy: never
    environment:
      DATABASE_URL: postgres://myuser:mypassword@postgres:5432/mydb
      FLOWISE_USERNAME: $$cap_flowise_username
      FLOWISE_PASSWORD: $$cap_flowise_password
    caproverExtra:
      containerHttpPort: 3000
      dockerfileLines:
        - FROM flowiseai/flowise:$$cap_flowise_version
        - CMD /bin/sh -c "sleep 3; flowise start"
    volumes:
      - $$cap_appname-db-data:/root/.flowise

caproverOneClickApp:
  variables:
    - id: $$cap_flowise_version
      label: Flowise version
      defaultValue: '1.4.3'
      description: Checkout their docker page for the valid tags https://hub.docker.com/r/flowiseai/flowise/tags
      validRegex: /^([^\s^\/])+$/
    - id: $$cap_flowise_username
      label: Flowise Username
      description: 'Your Flowise username'
    - id: $$cap_flowise_password
      label: Flowise Password
      description: 'Your Flowise password'
  instructions:
    start: >-
      Flowise is a powerful AI tool. Before you start, make sure you have all your environment variables ready to input.
    end: >-
      Your Flowise app is now deployed and running!
  displayName: 'Flowise'
  description: 'Flowise AI Tool'
  documentation: 'https://github.com/FlowiseAI/Flowise'

OMG I just deployed Flowise using this!! Thank you!! <3 @malipetek

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants