Installation
The deployment includes a Mongo database, a server and different apps for managing forms, 2D graphics, 3D graphics and agentic AI. The components are installed using docker and a single docker compose file.
Docker
If you already have Docker installed you can skip this section. Docker is a platform designed to help developers build, share, and run container applications. It is available for Linux, MacOs and Windows. For MacOs and Windows install Docker Desktop. For Linux run:
sudo apt update
sudo apt install ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Then install the actual packages and add yourself to the docker group so you don't have to prefix every command with sudo.
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo usermod -aG docker $USER
Verify it is running:
sudo docker run hello-world
SpaceTime
When Docker is running you can create a spacetime directory, download the docker-compose file and deploy the service.
mkdir spacetime
cd spacetime
curl -O https://raw.githubusercontent.com/axxem/spacetime/main/docker/spacetime/docker-compose.yml
docker compose up -d
Now open a browser and connect to the portal app, exposed at port 3000.
http://localhost:3000
Click on Registration to create a new user.