Remix URLs have the following format:
https://glitch.com/edit/#!/remix/project-name
By default, remixing does not copy over credentials that you have added to a project's .env, but you can configure the Remix URL to populate these values. This can be handy if you want a remix to automatically include .env variables like API keys.
Here's how:
- Add the variable names and corresponding values on the end of your Remix URL, like so:
https://glitch.com/edit/#!/remix/project-name?var1=value1&var2=value2..