Link: https://gkevinb.pythonanywhere.com/
Need to also rebuild docker to see code changes, then start it up
docker-compose build && docker-compose up
To shut it down, CTRL + c but also run following to make sure it stopped
docker-compose down
In the database docker container, the container_name corresponds to the hostname in the SQL connector in the code. While the hostname in the docker container corresponds to the host in the server status page in MySQL Workbench.
https://www.pythonanywhere.com/batteries_included/
Don't use custom virtual envs, if you want to use the packages in batteries_included.
Virutal environment (venv) found in server/venv/
Activate and deactivate venv
source server/venv/bin/activate
deactivateInstall packages from requirements.txt into venv. Make sure venv is active.
pip install -r server/src/requirements.txthttps://help.pythonanywhere.com/pages/RebuildingVirtualenvs/
https://help.pythonanywhere.com/pages/Virtualenvs/
All the environmental variables are now loaded from designated .env files which are not tracked by the repo.
In order to load for .env file on pythonanywhere.com, you must edit wsgi.py file as shown in the link below.
https://www.pythonanywhere.com/forums/topic/14207/
https://dev.to/michaelbukachi/flask-vue-js-integration-tutorial-2g90
https://testdriven.io/blog/developing-a-single-page-app-with-flask-and-vuejs/
https://flask.palletsprojects.com/en/1.1.x/patterns/appfactories/
https://flask.palletsprojects.com/en/1.1.x/blueprints/#blueprints
https://hackersandslackers.com/configure-flask-applications/
To run SQL commands go to the Databases tab and start a console on the database you want to edit. Then you can run any SQL queries you create locally on SQL Workbench, just copy and paste the exact commands and it runs exactly the same.
In the SQL command line, mysql>, you can run some shell commands ls and pwd. You just have to have the word system in front of them as shown below.
system lssystem pwdTo run a SQL script you have to run the source command and use the path to the script as the argument.
For example.
source mysite/sql-scripts/create_quotes.sqlLook into way of running not just individual commands but entire scripts after getting better at SQL.
https://peewee.readthedocs.io/en/latest/index.html
https://hackersandslackers.com/python-database-management-sqlalchemy/
https://leportella.com/sqlalchemy-tutorial.html
https://blog.pythonanywhere.com/121/
https://flask-sqlalchemy.palletsprojects.com/en/2.x/config/
https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xv-a-better-application-structure
https://riptutorial.com/sqlalchemy/example/6614/converting-a-query-result-to-dict
https://stackoverflow.com/questions/48047123/syncing-github-with-pythonanywhere
https://medium.com/@aadibajpai/deploying-to-pythonanywhere-via-github-6f967956e664
https://medium.com/swlh/automate-python-testing-with-github-actions-7926b5d8a865