https://github.com/openservices-dev/aws-upload-service
https://github.com/openservices-dev/aws-upload-service
aws aws-cloudfront aws-dynamodb aws-mediaconvert aws-s3 aws-sqs
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openservices-dev/aws-upload-service
- Owner: openservices-dev
- License: mit
- Created: 2024-09-10T10:28:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-28T11:02:14.000Z (over 1 year ago)
- Last Synced: 2025-02-10T00:19:13.935Z (over 1 year ago)
- Topics: aws, aws-cloudfront, aws-dynamodb, aws-mediaconvert, aws-s3, aws-sqs
- Language: TypeScript
- Homepage:
- Size: 2.38 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Upload Service
## Requirements
* [S3](https://aws.amazon.com/s3/)
* [CloudFront](https://aws.amazon.com/cloudfront/)
* [Simple Queue Service](https://aws.amazon.com/sqs/)
* [Media Convert](https://aws.amazon.com/mediaconvert/)
* [DynamoDB](https://aws.amazon.com/dynamodb/)
## Routes
| Method | Route | Description | Auth |
| ------ | ----- | ----------- | ---- |
| POST | /upload/file | Upload single file | Not required |
| GET | /upload/file/:id | Get file details | Required |
| GET | /upload/file/ | List of specified files | Required |
| DELETE | /upload/file/:id | Deletes single file | Required |
## Logging and debugging
Enable debug logs:
```
LOGGER_LEVEL=debug
```
**Sentry** is supported and is initialized if `SENTRY_DSN` variable is set:
```
SENTRY_DSN=
```
## License
[MIT license](./LICENSE)