Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)