mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 11:21:03 +03:00
Instructions without docker #281
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @0marcrem on GitHub (Jan 28, 2023).
Hi,
I'm trying to follow the instruction: Run without docker
After running start.sh, I have the following log:
I guess that's ok?
I'm not sure how to open Planka in my browser. https://localhost https://localhost:3000 are not working
Any help would be appreciated.
@meltyshev commented on GitHub (Jan 29, 2023):
Hi! It seems we forgot to mention the default port number in the readme... Please try http://localhost:1337 🙂
@0marcrem commented on GitHub (Jan 31, 2023):
Thanks!
But I only get a blank page with title "Planka" and a warning in the browser console:
Loading failed for the <script> with source “http://localhost:1337/static/js/main.9ce4c69d.js”.Any ideas?
@meltyshev commented on GitHub (Feb 2, 2023):
Sorry, there's a mistake in readme. Please try to copy the contents of the build folder instead of copying the folder itself:
cp -r build/. ../server/public.@meltyshev commented on GitHub (Feb 2, 2023):
I've updated the installation instructions without docker.
@0marcrem commented on GitHub (Feb 2, 2023):
It worked, but there are still some issues. I guess something is not loading correctly.

There are no icons, and some console errors.
@0marcrem commented on GitHub (Feb 22, 2023):
Any ideas?
@meltyshev commented on GitHub (Feb 22, 2023):
Sorry, I missed your comment. Four dots in a row in the paths looks very strange. But I need more context to understand the problem. Could you describe all the steps that were performed to install Planka?
We also recently updated the documentation for dockerless installation: https://docs.planka.cloud/docs/installl-planka/Debian%20&%20Ubuntu.
@0marcrem commented on GitHub (Feb 22, 2023):
Oh, I use windows for the server, because I have other programs that require it and plenty of CPU, mem left. (Now, I see that it is for Debian and Ubuntu only).
But I guess it should be possible to run it on Windows - I mean its running, but without icons and fonts.
I tested it using the browser on the same machine.
Steps:
Also, I tried the development mode and it worked just fine.
@meltyshev commented on GitHub (Feb 22, 2023):
All steps seem to be correct. I have one guess, I heard somewhere that
--prefix clientin npm scripts may not work properly on Windows. Please try to replacenpm run client:buildwith(cd client && npm run build)in your steps.Update: that doesn't seem to work either, we're trying to find the problem.
@meltyshev commented on GitHub (Feb 22, 2023):
Should be fixed by
8dd331b895. Please pull the update and build the client again 🙂