Skip to content

Commit

Permalink
edit api
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhedre committed Apr 16, 2022
1 parent 140448a commit 6af86b8
Show file tree
Hide file tree
Showing 7 changed files with 899 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .firebase/hosting.cHVibGlj.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
index.html,1648539549385,004474b983b0df1d8b01d42d3bc39e5b85fe0edb2b9c4608eb32d6c6fca7cf18
favicon.ico,1648539549385,c599b7a91ab3627e3538125d9f40adc2d4bf949046984262670545dc7738af06
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "movie-c0b6c"
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Local Netlify folder
.netlify
6 changes: 6 additions & 0 deletions database.rules.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rules": {
".read": true,
".write": true
}
}
19 changes: 19 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
3 changes: 2 additions & 1 deletion src/common/apis/MovieApiKey.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export const APIKey = <YOURKEYHERE>;
export const APIKey = "8a740041";
//http://www.omdbapi.com/?i=tt3896198&apikey=8a740041
Loading

0 comments on commit 6af86b8

Please sign in to comment.