-
Notifications
You must be signed in to change notification settings - Fork 27
Crashes on startup since PR #67 #73
Comments
Hah, my bad for the second one. |
We should:
|
I was thinking about this last night, and my plan is to just assume a logical default name from the url. I didn't want to do that at first, due to the possibility of collisions, but it's probably a little more user-friendly than an error message. But yeah, in the case that the app state is unrecoverable, some kind of alert that the state is corrupted probably still makes sense. Hopefully we'll get these managed in code, so they're less likely to end up broken. Another thing we need to watch for in this is if users run multiple Matterfront processes, saving the state like this isn't going to work very well... |
Thought the same. Ideas on the spot:
Sure we can work around that for
Indeed, the most obvious case being a contributor running both a stable build and its dev mode app. |
when I worked on this the other day, I managed to reproduce an interesting issue. I would go in and add a I found that anytime When I modified the I also found that the This meant that if you made any changes to |
in settings.js there is no defaults for teams. {
"teams": [{
"name": "team1",
"url": "http://some.server.com/team1"
},{
"name": "team2",
"url": "http://some.server.com/team2"
}]
} to the defaults in settings.js it worked. |
@Dennis-Smurf those settings should be entered into your You def do not want to add these to the settings.js file if you have any intention of running a build or distributing in any way. Besides that, we are preparing to merge PR #75 which fixes this for those folks who used a released version of Matterfront, and are updating with the master (unstable) branch without following the new instructions. |
FYI, I got this error when attempting to run an updated build from master after previously running a 1.1.x matterfront. |
@RangerRick that means you are missing the @geekytime @3-john-4 I'm thinking of un-releasing v1.x of this until we get the UI for team additions online... I get the feeling that people aren't reading update docs, and this isn't very forgiving right now if you don't. |
without a
state.json
:with a
state.json
:This looks like what @H3Chief got there and apparently the fixes don't fix it. Cleaning
node_modules
has no effect.The text was updated successfully, but these errors were encountered: