Show HN: File0 – An easier way to manage files in serverless apps
11–20 of 158 posts
Re: Show HN: File0 – An easier way to manage files in serverless apps
#12- Can I trust you?
- Where are your company credentials?
- What's the business continuity plan?
- What's your support? Sending an email to hi@ may not work, when my application is dead because of some bug at your end.
Re: Show HN: File0 – An easier way to manage files in serverless apps
#13Unless it's S3 compatible it's going to be a gargantuan task to make this successful as _everything_ uses the S3 API.
Re: Show HN: File0 – An easier way to manage files in serverless apps
#14Re: Show HN: File0 – An easier way to manage files in serverless apps
#15These comparisons are really unfair. For example there's no reason you have to use a bucket policy in the sdk (I've never). Unless it's S3 compatible it's going to be a gargantuan task to make this successful as _everything_ uses the S3 API.
But best of luck to OP!
Re: Show HN: File0 – An easier way to manage files in serverless apps
#16Quick alternative:
#!/bin/bash
if [ "$#" -ne 2 ]; then
echo "Usage: $0 "
exit 1
fi
FILE_TO_UPLOAD=$1
S3_BUCKET=$2
S3_OBJECT_NAME=$(basename "$FILE_TO_UPLOAD")
aws s3 cp "$FILE_TO_UPLOAD" "s3://$S3_BUCKET/$S3_OBJECT_NAME" --acl public-read
if [ $? -eq 0 ]; then
echo "File uploaded successfully."
PUBLIC_URL="https://$S3_BUCKET.s3.amazonaws.com/$S3_OBJECT_NAME"
echo "The file is publicly accessible at: $PUBLIC_URL"
else
echo "Failed to upload file."
exit 1
fiRe: Show HN: File0 – An easier way to manage files in serverless apps
#17Re: Show HN: File0 – An easier way to manage files in serverless apps
#18I've come to think the UX requirements of enterprise and indie dev / start up customers are fundamentally incompatible in the cloud.
As an enterprise I want to be able to set restrictions at the org, project, team and resource level for various compliance rules. And I want these rules to be restrictive by default (e.g block public access).
However as an individual developer the mere existence of those options makes getting started and debugging things painful. It's why I'll never again use Azure for a side project, although it'd be my first choice for a government project.
Re: Show HN: File0 – An easier way to manage files in serverless apps
#19It isn't just developer experience. - Can I trust you? - Where are your company credentials? - What's the business continuity plan? - What's your support? Sending an email to hi@ may not work, when my application is dead because of some bug at your end.
Re: Show HN: File0 – An easier way to manage files in serverless apps
#20It isn't just developer experience. - Can I trust you? - Where are your company credentials? - What's the business continuity plan? - What's your support? Sending an email to hi@ may not work, when my application is dead because of some bug at your end.
Perhaps a 'mirror to S3-compatible store' feature would address these concerns though. Sure it is extra cost, but it would be a nice de-risking option for early adopters.