Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fcc309d
initial commit with axios, firebase and env set up
normanlikescats Mar 9, 2023
f793a95
setup firebase stuff and movie API
normanlikescats Mar 9, 2023
ef0ab71
set up router and basic components to build out
normanlikescats Mar 9, 2023
db4da73
built login/register page
normanlikescats Mar 10, 2023
3c0476b
set up create a review page, movie specific page and api calls
normanlikescats Mar 11, 2023
8e2cffe
created movies database for movies with reviews and home feed to show…
normanlikescats Mar 12, 2023
b88c371
add edit and delete buttons (v1, not final, not great)
normanlikescats Mar 13, 2023
3e15724
add context to signin and signup
normanlikescats Mar 14, 2023
e02fd7b
insert create a profile page and allow profile picture upload
normanlikescats Mar 14, 2023
f33b087
passed user display name and user pfp through to reviews, allowed edi…
normanlikescats Mar 15, 2023
8363c94
added functionality to view other profiles and to be able to click pr…
normanlikescats Mar 15, 2023
3643bed
fixed database issue
normanlikescats Mar 15, 2023
c113894
allow users to edit profile if its their own
normanlikescats Mar 15, 2023
c82382e
fixed issues with deleting reviews
normanlikescats Mar 16, 2023
0a3bb26
add watched function
normanlikescats Mar 17, 2023
f9c8932
added average rating feature
normanlikescats Mar 17, 2023
743841a
add styling for movie page
normanlikescats Mar 18, 2023
bc572cb
finished styling on movie page and create profile page
normanlikescats Mar 20, 2023
a2d2a42
add styling to user profile pages
normanlikescats Mar 20, 2023
51f3d1f
Merge pull request #2 from normanlikescats/main
normanlikescats Mar 21, 2023
8c1bc7a
Merge pull request #3 from normanlikescats/sidebar-code
normanlikescats Mar 21, 2023
e0c93ee
create a review css, and login css
normanlikescats Mar 21, 2023
483573a
Add-sidebar-data
Sandiprumba Mar 21, 2023
fcadee1
Merge pull request #4 from normanlikescats/sidebar-code
normanlikescats Mar 21, 2023
8aab0ba
Merge branch 'main' of github.com:normanlikescats/film-o-rama
normanlikescats Mar 21, 2023
b9a12de
edited sidebar
normanlikescats Mar 21, 2023
d091005
add horizontal navbar at top of screen on larger screens
normanlikescats Mar 21, 2023
fa67bea
changes
Sandiprumba Mar 22, 2023
98b043a
Merge pull request #5 from normanlikescats/sidebar-code
normanlikescats Mar 22, 2023
39d073f
final css edits
normanlikescats Mar 22, 2023
ac6d3f4
small edits for hosting
normanlikescats Mar 22, 2023
c4d861f
small edits for hosting
normanlikescats Mar 22, 2023
74862ec
final commit, minor bug fixes
normanlikescats Mar 22, 2023
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
10 changes: 10 additions & 0 deletions .firebase/hosting.YnVpbGQ.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
asset-manifest.json,1679474495835,f37a3b1b48e4e871d4165516385f8fa2b4a7f86cb037da3160957364031b0376
index.html,1679474495823,fb6b9a392465a4f9ec87df787e52d33a7e1b8e139453872ce644a2fe745c54a9
logo.png,1679474259282,2eab13f5dcdb5cdd39cdc6f1e65a209afeec687a85cbda036b1bac178de20e46
manifest.json,1679474259307,3a31ba1df2bd178e33ca2d474b489ff088665b6c470673b31686f223155ec97b
static/css/main.001af77f.css,1679474495860,894da1897c84ea85040340baac41027405668f23357fa5edcab415287276470b
static/js/main.9049c1f5.js.LICENSE.txt,1679474495861,cd629603afcfb58e3404724f9e4b7ca02193bf87f1b8355b834555229853d306
static/css/main.001af77f.css.map,1679474495864,e3e3eb941fda9db32531bfa89a50ea8beca47c9b4429648ce01cd4caed504a60
favicon.png,1679474259249,690f5f98eeda8ea25aa36b0ad2e0a3099034fe49cf1d5f9cd4cde970b5af0f99
static/js/main.9049c1f5.js,1679474495871,14d1b851fa982e772281c872ebf0fb458a81b1d1f5263068c6fb4e4b01282402
static/js/main.9049c1f5.js.map,1679474495878,23295f43d8ef57d638efae632db39ff4e2af6e5cbfe5568c396926084ad895a6
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "film-o-rama"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
.env
/node_modules
/.pnp
.pnp.js
Expand Down
10 changes: 10 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
Loading