A simple application to quickly consult which platforms a film is available on. KinetogrApp is built using React for the frontend and Flask for the backend.
- View the list of movies
- Search of movies
-
Clone the repository
-
Install the dependencies
- For React:
cd React/kinetograpp-react npm install
- For Flask:
cd Flask pip install -r requirements.txt
-
- [Optional] Create python environment
mkdir .venv python -m venv .venv
-
Start the backend server
- -[Optional] Create Migration with flask-migrate
flask db migrate -m "initial migration"
- run
flask run
-
Start the frontend server
- run
cd React/kinetograpp-react npm start