mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Screen stuck at language wizard - Local build #2506
Labels
No labels
area:database
awaiting-feedback
backend
blocked
breaking change: web api
bug
build
ci
confirmed
discussion needed
dotnet future
downstream
duplicate
EFjellyfin.db
enhancement
feature
future
github-actions
good first issue
hdr
help wanted
invalid
investigation
librarydb
live-tv
lyrics
media playback
music
needs testing
nuget
performance
platform
pull-request
question
regression
release critical
requires-web
roadmap
security
security
stale
support
syncplay
ui & ux
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: starred/jellyfin#2506
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 @kn-f on GitHub (Jan 14, 2021).
Describe the bug
When I build Jellyfin locally and access to the wizard, I get stuck at language selection page and cannot proceed.
The drop-down box is not showing anything and there's a "loading" symbol on the screen.
System (please complete the following information):
To Reproduce
This is the method I've used that brought me further. With other methods the server is not starting due to errors.
Jellyfin Build
Jellyfin Web Build
Expected behaviour
When I access to localhost:8080, I would expect to get to the wizard and the wizard should work
Logs
Screenshots
Web page:
Errors:
Additional context
Please refer to issue #3132 as the described behaviour seems the same
@daullmer commented on GitHub (Jan 24, 2021):
I can't reproduce this problem. I think you're running the wrong commands in the wrong order. These are the correct commands to set you environment up for server development/testing:
yarn installandyarn build:productionin the web repositorydotnet run --project Jellyfin.Server --webdir /path/to/jellyfin-web/distThen you can access the local build of Jellyfin at
http://localhsot:8096Note: It is important that you pass the dist directory as the
webdirargument. This folder gets created duringyarn build:production@kn-f commented on GitHub (Jan 24, 2021):
@Ullmie02 works like a charm, thanks a lot!
Maybe would be beneficial updating the docs especially indicating to use
yarn build:productionand point at the directory created by the build process.