A real Estate website written with vanilla javascript and flask web server
First run the web server by running
python3 app.py
By deafult the app will run on the port 5000 , To run the app on a different port edit the
app.run(debug = True)
to
app.run(host=yourhost, port=yourport)
After running the app go to the main folder and run the home.html file on any server you like Using python & http.server package
python3 -m http.server