From 6809a0a747f8c6a9b64ff5dc3231fa199a9c0c3b Mon Sep 17 00:00:00 2001 From: Rodolphe Houdas Date: Tue, 31 Aug 2021 23:26:43 +0100 Subject: [PATCH] :hammer: Finish public deployment --- docker-compose.yml | 2 +- tools/multi-uploader.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index af22bbb..8454d56 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,4 +4,4 @@ services: openscad: build: . ports: - - "5000:5000" + - "127.0.0.1:5000:5000" diff --git a/tools/multi-uploader.html b/tools/multi-uploader.html index 41cdaed..413bfad 100644 --- a/tools/multi-uploader.html +++ b/tools/multi-uploader.html @@ -116,7 +116,7 @@ const send_form = document.getElementById("files-form"); send_form.addEventListener("submit", (event) => { - const url = "http://127.0.0.1:5000/"; + const url = "https://cad.interstellai.re/upload"; fetch(url, { method: "POST", body: new FormData(event.target)