Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shreyasganesh911/movie_restapi
Movie REST API for internship assignment submission
https://github.com/shreyasganesh911/movie_restapi
express flask mysql node
Last synced: about 1 month ago
JSON representation
Movie REST API for internship assignment submission
- Host: GitHub
- URL: https://github.com/shreyasganesh911/movie_restapi
- Owner: ShreyasGanesh911
- Created: 2024-08-27T13:39:19.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-08-29T13:01:57.000Z (5 months ago)
- Last Synced: 2025-01-02T00:09:41.405Z (about 1 month ago)
- Topics: express, flask, mysql, node
- Language: JavaScript
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Internship Assignment submission
## Problem Statement
Build a simple relational database schema to manage a movie database, and create basic GET, PUT methods## Schema
## Get DataBase
[Click here](./assets/Dump) to access the MYSQL dump folder and import it to your MYSQL workbench
This folder has the data and well as the structure
1) Download the file
2) Open MYSQL workbench and create a new schema movie_10x
3) Import the folder into the workbench (Data Import option under Server)
4) Execute query to disable sql safe update
``` script
SET SQL_SAFE_UPDATES = 0;
```
## Create table queries
For table queries [Click here](./assets/CreateTable.sql)## JavaScript Implementation
[Click Here](./JavaScript)