Ask HN: Simplest way to create a very basic data driven website these days?
I'm not up to speed on the latest cloud offerings out there.
For very simple side project ideas that are essentially static websites with a search engine component that needs to query some data, what is the quickest/simplest options out there these days to get something running in a few hours?
Here's what I was hoping to achieve:
1. Upload a CSV spreadsheet of data to some cloud storage solution
2. Be able to quickly define some simple API endpoints hosted in the cloud to query said data.
3. Write the website as static files with a js client querying the API endpoints as needed.
4. Host the website as static files in S3 or similar for low cost and ease.
What is out there that is similar to this and do people recommend as the easiest to use?
Thanks!
T
6 comments
[ 3.1 ms ] story [ 27.2 ms ] threadYou can host it on Heroku in their free tier of service if it's just for testing. That includes a PostgreSQL instance if you want one.
I don't know much Javascript but with the Flask framework, all HTML/JS/CSS files are static templates that sit in a folder with your app's code. You can deploy with Git or even with Dropbox if you want it on super easy mode.