Skip to content

Commit

Permalink
AboutDialog and .md files update
Browse files Browse the repository at this point in the history
  • Loading branch information
vgees committed Oct 2, 2023
1 parent 0635f5f commit f831ce7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 244 deletions.
76 changes: 0 additions & 76 deletions CODE_OF_CONDUCT.md

This file was deleted.

160 changes: 0 additions & 160 deletions CONTRIBUTING.md

This file was deleted.

12 changes: 6 additions & 6 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ Starts Flowise from [DockerHub Image](https://hub.docker.com/repository/docker/f

1. Create `.env` file and specify the `PORT` (refer to `.env.example`)
2. `docker-compose up -d`
3. Open [http://localhost:3000](http://localhost:3000)
3. Open [http://localhost:8080](http://localhost:8080)
4. You can bring the containers down by `docker-compose stop`

## 🔒 Authentication

1. Create `.env` file and specify the `PORT`, `FLOWISE_USERNAME`, and `FLOWISE_PASSWORD` (refer to `.env.example`)
2. Pass `FLOWISE_USERNAME` and `FLOWISE_PASSWORD` to the `docker-compose.yml` file:
1. Create `.env` file and specify the `PORT`, `Vectrflow_USERNAME`, and `Vectrflow_PASSWORD` (refer to `.env.example`)
2. Pass `Vectrflow_USERNAME` and `Vectrflow_PASSWORD` to the `docker-compose.yml` file:
```
environment:
- PORT=${PORT}
- FLOWISE_USERNAME=${FLOWISE_USERNAME}
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD}
- Vectrflow_USERNAME=${Vectrflow_USERNAME}
- Vectrflow_PASSWORD=${Vectrflow_PASSWORD}
```
3. `docker-compose up -d`
4. Open [http://localhost:3000](http://localhost:3000)
Expand All @@ -32,4 +32,4 @@ If you like to persist your data (flows, logs, apikeys, credentials), set these
- LOG_PATH=/root/.flowise/logs
- SECRETKEY_PATH=/root/.flowise

Flowise also support different environment variables to configure your instance. Read [more](https://docs.flowiseai.com/environment-variables)

4 changes: 2 additions & 2 deletions packages/ui/src/ui-component/dialog/AboutDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const AboutDialog = ({ show, onCancel }) => {
password
}
}
const latestReleaseReq = axios.get('https://api.github.com/repos/FlowiseAI/Flowise/releases/latest')
const latestReleaseReq = axios.get('https://github.com/vgees/VectrFlow')
const currentVersionReq = axios.get(`${baseURL}/api/v1/version`, { ...config })

Promise.all([latestReleaseReq, currentVersionReq])
Expand Down Expand Up @@ -52,7 +52,7 @@ const AboutDialog = ({ show, onCancel }) => {
aria-describedby='alert-dialog-description'
>
<DialogTitle sx={{ fontSize: '1rem' }} id='alert-dialog-title'>
Flowise Version
VectrFlow Version
</DialogTitle>
<DialogContent>
{data && (
Expand Down

0 comments on commit f831ce7

Please sign in to comment.