Closed
Conversation
After cloning the edge repo and cd-ing into the "main" directory I ran into the following issue when trying to start the app $> clojure -A:dev:build:dev/rebel Exception in thread "main" java.io.FileNotFoundException: Could not locate edge/rebel/main__init.class or edge/rebel/main.clj on classpath. I fixed it by adding the extra local dep edge.rebel.main to the :dev/rebel alias.
When I want to start the dev system I run into the following issue: [Edge] Now enter (go) to start the dev system dev=> (go) CompilerException java.io.FileNotFoundException: Could not locate nrepl/server__init.class or nrepl/server.clj on classpath., compiling:(figwheel_sidecar/components/nrepl_server.clj:6:1) I was able to fix it by upgrading to the latest released version of figwheel.
Contributor
|
See: juxt/yada#247 edge/main will be removed in a future release, it is currently deprecated. It's not mentioned in any top-level documentation any more. It needs a note in the README really. I would recommend using |
Author
|
Ok, if it's deprecated then my PR has not much value, I'll close it. |
Contributor
|
It's on the near-term roadmap, yes! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Following the yada manual I ran into some issues:
I managed to fix the startup issues, so now the dev repl starts upp and I can successfully access localhost:3000. The commit messages describe what failed and what I did to resolve them.