This project is an example of SQLAlchemy in Python. Releasing this code for people to learn basics of SQLAlchemy.
Currently, this project is set to use PostgreSQL as the database. To set up your PostgreSQL environment please do the following
- Copy the .env_template file to .env
- Enter the environment information for below:
- username
- password
- host
- port
- database
- schema_name
- Make sure the .env file is not added/committed to the remote repository.
If one chooses to use the public schema in PostgreSQL or a different database entirely, then the necessary changes are needed in the main.py file.
If you notice any problems with running this, please open an issue.