How do I start a website from scratch without the use of a framework?
I want to create a web service that communicates with a database and dynamically displays the contents based on a user's activity.
I want the appearance to be HTML5/CSS3.
I would prefer to communicate with the database through python, or go.
The database is Cassandra.
I feel like I have placed all of this effort into trying frameworks that have limiting options and run APIs where I have no clue what is really being done by the API.
I want a super simple example that I can understand the basics of two way communication. I want my /var/www to look like this :
# ls /var/www
index.html datawriteandread.py
An example of something as simple as an index.html: with two boxes, one that takes in text and submits it to a database and a second box that lists below the first the contents of that database.
And a second file, datawriteandread.py, to communicate to the database for adding new content and to display the old in the HTML.
What of my ignorance is showing in wanting something so simple?
Writing the python to Cassandra is easy enough, it's the communication and display in the HTML that I am lost on. I have programming chops but webdev is completely new to me.