https://github.com/1337kid/magic4.0-photobooth-backend
https://github.com/1337kid/magic4.0-photobooth-backend
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/1337kid/magic4.0-photobooth-backend
- Owner: 1337kid
- Created: 2025-02-01T04:35:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-01T05:46:27.000Z (over 1 year ago)
- Last Synced: 2025-02-01T06:24:30.751Z (over 1 year ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IEEE Magic 4.0 Photo Booth Backend
### Exmaple image upload using curl
```bash
curl -X POST http://backend-url/upload \
-H "Content-Type: multipart/form-data" \
-F "image=@04.png"
```
### Upload Response
```json
{
"message":"File uploaded successfully",
"imageUrl":"https://SUPABASE_SUBDOMAIN.supabase.co/storage/v1/object/public/BUCKET_NAME/1738388384533_04.png"
}
```