login and password requested / where can i find them? #202
-
hello, would be cool if anyone can help. I am not developper and tryed to install flowise by installing node and then typing the command "npx flowise start". the flowise page is opening on localhost:3000 but there is a login popup coming up asking for username and password...what should i put there? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
In README File there been demo User: and Password Check it
🔒 Authentication
To enable app level authentication, add USERNAME and PASSWORD to the .env file
in packages/server:
USERNAME=user
PASSWORD=1234
I hope you got there
…On Sat, May 27, 2023 at 4:05 PM michaelkaspy ***@***.***> wrote:
hello, would be cool if anyone can help. I am not developper and tryed to
install flowise by installing node and then typing the command "npx flowise
start". the flowise page is opening on localhost:3000 but there is a login
popup coming up asking for username and password...what should i put there?
—
Reply to this email directly, view it on GitHub
<#202>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AW7NPFNZN34MDKUJ3C4JJ4TXIHUZRANCNFSM6AAAAAAYREN5JM>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Docker Compose
1. Go to docker folder at the root of the project
2. Create .env file and specify the PORT (refer to .env.example)
3. docker-compose up -d
4. Open http://localhost:3000
5. You can bring the containers down by docker-compose stop
<https://github.com/FlowiseAI/Flowise#docker-image>Docker Image
1. Build the image locally:
docker build --no-cache -t flowise .
2. Run image:
docker run -d --name flowise -p 3000:3000 flowise
3. Stop image:
docker stop flowise
@logicaldata Co ***@***.***> Did you used Docker ?
…On Sat, May 27, 2023 at 4:25 PM michaelkaspy ***@***.***> wrote:
or maybe its just because i dont know how to do it correty...thats more
than possible!...how can i open env file to modify the login/password on my
local computer?
—
Reply to this email directly, view it on GitHub
<#202 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AW7NPFKFBQZUVC7GLVRI7BDXIHXCZANCNFSM6AAAAAAYREN5JM>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
sorry for the bug! It is now fixed. Please reinstall or pull from latest (v1.2.10) For npm: README For docker: README |
Beta Was this translation helpful? Give feedback.
thanks a lot for your reactivity ! it works now! :)