- This topic has 5 replies, 3 voices, and was last updated 6 years ago by supplanter64.
-
AuthorPosts
-
supplanter64ParticipantTrying to try some of the features of CodeMix and Angular IDE.
I’m attempting to start a Angular server. Normal startup is something like this:
ng server –proxy-config proxy.conf.jsonI created a new Angular CLI launch… added Custom ‘ng serve’ command arguments:
–proxy-config proxy.conf.jsonFirst attempt to launch, I noticed CodeMix downloaded git bash shell. But then it just froze, the Eclipse progress never making it past 85%.
I attempted to see what was going on in the console, but checking Allocate console (necessary for input). Still nothing.
One time I did see where it attempted to run ng serve, but stopped with a odd message “File not found /d”
I don’t know how to help debug this. I don’t see where you guys are logging CodeMix actions or any other debugging information.
There are several other bugs with this Angular IDE, but I support you and hope this becomes a stable product.
ignaciomModeratorHey,
I’m sorry to hear you are having this odd behavior with your Angular IDE, to better diagnose this.
1. Shutdown your Angular IDE.
2. Edit the angularide.ini file located at your install path and add the following line at the end of the file.
com.genuitec.eclipse.engine.log=true
3. rename/delete the directory ~/.codemix-store
4. Run your Angular IDE, try to run a Terminal.If you get the same behavior, Could you please attach here your workspace logs and also the log files that we enabled by editing the angularide.ini file, these files should be inside ~/.codemix
Best Regards
Ignacio
supplanter64ParticipantSorry, I’ve been very busy this past week. I’m in Eclipse 4.9.0 with Codemix and Angular IDE plugins. So I added -Dcom.genuitec.eclipse.engine.log=true to eclipse.ini.
Starting bash in the Terminal works fine, ng serve does not.
I could tell very little as to why ng refused to start. Hopefully you can.
Attachments:
You must be logged in to view attached files.
supplanter64ParticipantI’m very disappointed in CodeMix and Angular IDE. It would nice to use one tool for Java and Angular but CodeMix just isn’t ready.
Aaron LaraMember@supplanter64, Sorry for the delayed response 🙁 we are in the middle of a release that fixed one of the issues you reported.
We reviewed your logs and looks like the project doesn’t have NPM installed. If this is a newly created Angular project
npm install
should be run before deploying it. This can be fixed by runningnpm install --save-dev angular-ide
in the project directory and then trying to deploy again.I agree this is a bad experience and we will work on a way to make the deploying process better for users. Sorry about the troubles!
Please let us know if that fixes the issue for you.
Thanks!
Aaron Lara- This reply was modified 6 years ago by Aaron Lara.
- This reply was modified 6 years ago by Aaron Lara.
supplanter64ParticipantAaron, thank you! That fixed it. You guys have done some amazing and interesting work here. Sorry for the non-helpful negative comment. I was frustrated. As a developer I know how these things go.
-
AuthorPosts