-
-
Notifications
You must be signed in to change notification settings - Fork 162
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
Not working on Windows #97
Comments
@crossworth Thank you for reporting this issue! Is this blocking you from using the tool completely? Or have you found a way to work around it until the fix is in? |
No worries, I'm able to use with the changes from my last message. So maybe this can be low priority. |
Got it, thanks for letting me know! |
What do you think about embeding templates ? https://pkg.go.dev/embed |
@SkYNewZ thank you for the comment. There were some changes made to use the |
The problem is still not fixed |
Can't use it at all in Windows, only forking and fixing. Any news on this PR(#251)? |
+1 |
+1 template: pattern matches no files: |
+1 template: pattern matches no files: ui\build\index.html |
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
+1 template: pattern matches no files: ui\build\index.html |
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
+1 |
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
By modifying the static.go file, successfully made the UI open normally under the Windows system.
|
Hi, great project. I'm trying using it on Windows, but can't get it to work.
When running and trying to access the browser, the following error is displayed:
open ui\build\index.html: file does not exist
I have done some diging and have found the problem, but don't know the right "fix", so for this reason I'm opening this issue instead of PR.
Basically on this line,
filepath.Abs
returnsC:\
asynqmon/main.go
Line 59 in 0eb9d88
This causes problems with the check if is
/
asynqmon/main.go
Line 65 in 0eb9d88
There is a problem with
filepath.Join
as well, since it will use\
and GOembed.FS
will not find the file then.https://golang.org/pkg/embed/#hdr-Directives
The only way I could get it to work was making the following changes:
The text was updated successfully, but these errors were encountered: