https://fullstacknd-capstone.herokuapp.com/
- email: super@example.com
- password: .Re-nuDtaJF5e4K
pip install -r requirements.txt. ./setup.shflask run --reloaddropdb casting
createdb casting
psql casting < movie.psql
python test_app.pyrun fullstacknd-capstone.postman_collection.json or open in Postman (make sure the server is running)
dropdb casting
createdb casting
psql casting < movie.psql
newman run fullstacknd-capstone.postman_collection.json- Casting Assistant: view only
- Casting Director: view, create and modify actors; modify movie
- Executive Producer: view, create and modify actors; create and modify movie
{
"actors": [
{
"age": 30,
"gender": "male",
"id": 1,
"name": "James"
},
{
"age": 25,
"gender": "female",
"id": 2,
"name": "Dana"
},
{
"age": 30,
"gender": "male",
"id": 4,
"name": "Andy"
}
],
"success": true
}{
"actor": {
"age": 30,
"gender": "male",
"id": 1,
"name": "James"
},
"success": true
}{
"actor": {
"age": 25,
"gender": "female",
"id": 5,
"name": "Dana"
},
"success": true
}{
"success": true
}{
"success": true
}{
"movies": [
{
"id": 1,
"release_date": "Sat, 01 Jun 2013 00:00:00 GMT",
"title": "Space Hound"
},
{
"id": 3,
"release_date": "Fri, 01 Jan 2021 00:00:00 GMT",
"title": "Space Ranger"
}
],
"success": true
}{
"movie": {
"id": 4,
"release_date": "Sat, 01 Jan 2022 00:00:00 GMT",
"title": "Space Hound"
},
"success": true
}{
"movie": {
"id": 2,
"release_date": "Mon, 01 Jun 2020 00:00:00 GMT",
"title": "Amazing Show"
},
"success": true
}{
"success": true
}{
"success": true
}