Replies: 2 comments 4 replies
-
Hey @revsuine, thanks so much for the detailed explanation, it really helps to understand the way you prefer using, besides from diagnosing the issue. The way you prefer using is the simplest way, which aims to inexperienced users to be able to edit their configs on the fly, or even deploy to their hosts without needing the source (in this case, I may look further into hot reloading stuff an option to bypass this functionality later, sounds a nice feature for more advanced users, but can't promise for this right now. The preferred usage is through containers where you can mount those settings files into your dotfiles folder, so you will have absolute control over the settings, assets etc. directly synced with your dotfiles repository. Please let me know what you think about it, and feel free to close the issue if it answers your problem. PS: I used arch btw :D The requirement was there to see the OS only, just in case the Docker version creeps out on different platforms. |
Beta Was this translation helpful? Give feedback.
-
I see, I didn't know you weren't meant to edit settings.json directly. So there is no way to use my own wallpaper from a local file? |
Beta Was this translation helpful? Give feedback.
-
Hiya, firstly I'm not sure if this is a bug, I may just be doing something wrong, in which case I'd appreciate an explanation of how to do things correctly. I've done my best to read docs and search things up but I don't do web app dev so I don't really know what I'm doing other than following instructions.
Basically, I'm managing to get the startpage up at
localhost:3000
, but when I editsettings.json
, the changes don't appear on the server, including when I restart the server withpm2 restart
(also triedpm2 reload
andpm2 delete
followed bypm2 start
again). I have also triedyarn dev
andyarn start
but those also seem to only use the config from before the server was started for the first time. I have also tried runningyarn build
again, to no avail.I am able to type
config edit
in the startpage and paste mysettings.json
in there and it displays my settings as I would expect.To Reproduce
Steps to reproduce the behavior:
https://github.com/excalith/excalith-start-page.git
(or the ssh, I cloned the ssh)rm -rf .github/workflows
sudo pacman -S nodejs yarn
)yarn
to install all dependenciessettings.json
prior to starting the server. For me, I changed the theme toCatppuccin Mocha
and set my username.yarn dev
and go tolocalhost:3000
. See that the webpage currently reflects the state ofsettings.json
.settings.json
some more. For me, I changed the bookmarks to be the websites I like to use.yarn dev
oryarn start
orpm2 start "yarn start"
(orpm2 start "yarn dev"
) and observe that the startpage appears as thoughsettings.json
was not changed since the first time you started the serverconfig edit
into the startpage and paste in yoursettings.json
. Save and pressesc
, observe that your settings have now changes and the startpage reflects your settings.assets
folder and am trying to access it in my config, but this wallpaper won't display until I've fixed this.Expected Behavior
I am able to view a startpage that reflects the state of my
settings.json
file, either dynamically or by restarting the server or rebuilding.Specs
6.8.1-arch1-1
if that matters?Beta Was this translation helpful? Give feedback.
All reactions