codereport / jsource

J Language Source Code. Livestream links ⬇️
https://www.youtube.com/playlist?list=PLVFrD1dmDdvfVhYLU_iKkV67X9XqCJLWe
Other
38 stars 20 forks source link

Anyone know how to build J IDE? #68

Closed codereport closed 3 years ago

codereport commented 3 years ago

There seems to be an IDE located at jsource/jlibrary/addons/ide/jhs. I spent a couple minutes trying to figure out how to build but to no avail. If someone wants to investigate that would be great.

juntuu commented 3 years ago

The simples I got it running was

./build/jsrc/Debug/jconsole ~addons/ide/jhs/config/jhs.cfg

which opens the ide in browser, running the server on localhost.

There is some documentation (haven't read much) at https://code.jsoftware.com/wiki/Guides/JHS/Server

Also other available UIs are listed in https://code.jsoftware.com/wiki/Guides#User_Interfaces_to_J with links to relevant documentation.

codereport commented 3 years ago

Neat! Got it working! For me the command from the root directory was

./build/jsrc/Debug/jconsole ./jlibrary/addons/ide/jhs/config/jhs.cfg

image