Software Campus project repository for Intelligent Data Science Chatbot
Documentation & Guides: https://dice-group.github.io/IDA
In order to develop, only tool you need is Docker
installed.
Docker is not directly supported by Windows 10 Home and Windows <= 8.1.
Use Docker Toolbox if you are using an unsupported OS.
IDA is set up via bash-scripts. If you are using Windows you will have to install bash, e.g. by installing cmder, by installing Cygwin or via WSL.
To get everything up and running follow these steps:
- Setting up Docker (Only once)
- Start a local registry:
docker run -d -p 5000:5000 --name registry registry:2
- Create a local single-node Docker swarm:
docker swarm init --advertise-addr 127.0.0.1
- Start a local registry:
- Managing development environment
- Starting the IDA stack (from project's root directory):
./services/deploy-dev.sh
- The IDA web interface should now be available at
http://127.0.0.1:4200/
- To stop and remove the running development stack run
docker stack rm ida-stack-dev
- The fuseki server can be accessed at
http://127.0.0.1:3030
- Starting the IDA stack (from project's root directory):
❤️ Credits to Lixi for creating the awesome logo for IDA 🙏