Hi guys i’m trying to deploy my test sene on a glitch project i’ve created before, without using the deploy button inside the script called “Deploy to Glitch”.
I tried to paste the url of my glitch prj but the component says it needs a key. Where can i find it and is it that missing key that make this error appear in the console?
There’s specific code and packages involved that allow us to directly deploy to Glitch
(basically we upload a zip file and the page needs to have a backend to receive and deploy that zip file)
Exactly
You don’t need to remix from inside Unity, you can also just remix this: https://glitch.com/edit/#!/needle-tiny-starter
(or look at what you’d need from that for a deployment backend if you absolutely want to)
Be aware that deployment currently assumes that all files in the target folder (that is public/ on glitch) come from your local web project and will be overriden on deploy - so if you have some files in there that you would want to keep you’d need to modify the code in deploy.js (see line 65) Glitch :・゚✧
As you’ll typically want to have your interactive content interact with the HTML/CSS around it, the typical approach is the other way around: bring your HTML + CSS into the local project, add the functionality that you need, and deploy it together to Glitch