Hi.
I saw a lot of updates on https://app.speckle.systems/:
- new viewer
- filters
- view saving
It looks really cool.
I decided to try these changes on a local server, but I didn’t see anything new
Could you please tell me if there are plans to update the local server?
I tried to create a server following the instructions docs.speckle.systems/developers/server/getting-started in the updated documentation, but I ran into problems with the .yml file:
minio didn’t open on the site 127.0.0.1:9001 until I added the line to yml:
minio:
image: 'minio/minio'
command: server /data --console-address ":9001"
restart: always
ports:
- '127.0.0.1:9000:9000'
- '127.0.0.1:9001:9001' # add string
volumes:
- ./minio-data:/data
file-import do not start until I installed a new version
preview-service do not start until I add port:
preview-service:
image: speckle/speckle-preview-service:2
restart: always
depends_on:
- speckle-server
environment:
PORT: '3003' # add string
REDIS_URL: 'redis://redis'`
And I add environment by speckle-ingress
speckle-ingress:
image: speckle/speckle-docker-compose-ingress:2
restart: always
ports:
- '127.0.0.1:80:8080'
environment:
FILE_SIZE_LIMIT_MB: "1000"
NGINX_ENVSUBST_OUTPUT_DIR: "/etc/nginx"`
I created a busket and after that the local server started.
I may have misunderstood the instructions, but it might be worth checking.