How to save photos in a glitch file, as `assets/image/foto.png`

how to make a photo saved in a glitch file, such as assets/image/foto.png. I’m using a mobile device, so I want to save photos in that file.

Thank you.

Just go to the assets folder and click Upload an Asset. If the page does not fit then you could turn on Desktop Site mode if you are using Google Chrome.

Upload a file to assets, copy the link and open the terminal (tools->terminal). Run this command:

wget https://cdn.glitch.com/your-file -o assets/image/foto.png && refresh

That should do the trick.

A more detailed (and long) guide:

1 Like