#Intelligent help system for artificial neural networks
Linux:
git clone https://github.com/ostis-apps/ann.ostis.git
cd ann.ostis/scripts
./install_ostis.shLinux:
cd ann.ostis/ostis-web-platform/scripts
./build_kb.shThere are 2 possible options to run:
Run on Linux:
cd ann.ostis/ostis-web-platform/scripts
./run_sc_server.shThen open localhost:8090 in your browser

Please note that JSON Websocket protocol will be available as well after run. Run on Linux:
#Terminal 1
cd ann.ostis/ostis-web-platform/scripts
./run_sctp.sh
#Terminal 2
cd ann.ostis/ostis-web-platform/scripts
./run_scweb.shThen open localhost:8000 in your browser.

You can open localhost:8090 in your browser as well to see new web interface version.
Place for knowledge base of your app. Put your .scs files here.
Place for problem solver of your app. Put your agents here.
Some tips:
- Store your modules with c++ agents in problem-solver/cxx;
- After update c++ code you need to rebuild problem-solver. Just run:
cd {project-name}/scripts
./build_problem_solver.sh
- For enable debug:
- add SET(CMAKE_BUILD_TYPE Debug) line to {project-name}/CMakeLists.txt file;
- rebuild problem-solver.
- Look example module with C++ agent here.