This project is a web application that allows users to interact with an Oracle database with populated data. The application will be built using Python and Flask, with SQLAlchemy as the ORM.
Fulvo_Video_Demo.mp4
The user will be able to:
- view all the tables in our database
- click on buttons that essentially does SQL queries (for example, select all that are skill level advanced)
- be able to create, read, update, and delete records
- be able to search for specific records
Before installing, you will need python installed in your local machine.
# clone this repo
> git clone https://github.com/andrearcaina/fulvo
# create a .venv
> python -m venv .venv
# activate .venv
> source .venv/bin/activate # with linux or macos
> .venv\Script\activate # with windows
# install dependencies
> pip install -r requirements.txt
# run app
> py run.py
# or
> python run.py