Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update README.md #15

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 42 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,42 @@
# KinetogrApp
# KinetogrApp

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.

## Feature
- View the list of movies
- Search of movies

## Installation
1. Clone the repository

2. Install the dependencies
- For React:
```bash
cd React/kinetograpp-react
npm install
```
- For Flask:
```bash
cd Flask
pip install -r requirements.txt
```
- - [Optional] Create python environment
```bash
mkdir .venv
python -m venv .venv
```
3. Start the backend server
- -[Optional] Create Migration with flask-migrate
```bash
flask db migrate -m "initial migration"
```
- run
```bash
flask run
```
4. Start the frontend server
- run
```bash
cd React/kinetograpp-react
npm start
```
Loading