Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9ae536b
Added readme.md
alphabert23 May 11, 2022
8d34085
created cats table in db
alphabert23 May 11, 2022
db35cdd
updated port number to 3306
alphabert23 May 11, 2022
ebf3518
added cats and dogs
alphabert23 May 11, 2022
90afc14
change the function name of the route function
artiskool Apr 29, 2022
6cabde5
revert
artiskool Apr 29, 2022
551c9b5
added v1 folder
artiskool May 2, 2022
b90b774
remove __pycache__
artiskool May 2, 2022
683900f
added .gitignore
artiskool May 2, 2022
aa91325
delete models/dog.py
artiskool May 2, 2022
345f3c4
updated app.py
artiskool May 2, 2022
2f04ee1
cleanup app.py
artiskool May 5, 2022
00fc58d
updated
alphabert23 May 11, 2022
540aa4a
update cats endpoints
alphabert23 May 11, 2022
1c7de32
implements fields, pagination, metadata
artiskool May 6, 2022
be1e802
implements fields, pagination, metadata
artiskool May 6, 2022
6919d98
merge
alphabert23 May 11, 2022
aaf463a
Implements fields and metadata on cats
alphabert23 May 11, 2022
92a0c75
added auth and login test file
artiskool May 17, 2022
6402d60
integrated JWT
artiskool May 17, 2022
99deab5
seatwork 6
alphabert23 May 19, 2022
63e4ad3
updated client script
artiskool May 24, 2022
24ef5c6
updates on api
artiskool May 24, 2022
658d593
keep login
artiskool May 25, 2022
5773ab7
updated for todays discussion
artiskool May 25, 2022
fa6da9c
add Dogs component
artiskool May 25, 2022
a8515f2
implements logout and dogs list features
artiskool May 26, 2022
0854182
ignore mysql database
artiskool May 26, 2022
25a8493
dog component
artiskool May 28, 2022
aff39c2
dog component
artiskool May 28, 2022
aa9eab5
Revert "dog component"
alphabert23 Jun 2, 2022
ab5f55c
Revert "dog component"
alphabert23 Jun 2, 2022
dc45960
dog componenet Seatwork 8
alphabert23 Jun 2, 2022
415d3d3
Seatwork #9: Implement Cat Component
alphabert23 Jun 8, 2022
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
IT461 FLASK IN DOCKER
Author: Pardillo, Jun Albert S. BSCS-4 F1
24 changes: 24 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.vscode
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
24 changes: 24 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Installation instructions

$ npm i
$ npm start



# "React Login Authentication with JWT Access, Refresh Tokens, Cookies and Axios"

✅ [Check out my YouTube Channel with all of my tutorials](https://www.youtube.com/DaveGrayTeachesCode).

**Description:**

This repository shares the code applied during the [YouTube Tutorial](https://youtu.be/nI8PYZNFtac).

Build the backend REST API that I use for authentication in this tutorial with my [7 hour Node JS for Beginners course](https://youtu.be/f2EqECiTBL8) on my channel.

Just starting with React? I have a [9 hour React course tutorial video](https://youtu.be/RVFAyFWO4go) on my channel.

I suggest completing my [8 hour JavaScript course tutorial video](https://youtu.be/EfAl9bwzVZk) before attempting React if you are new to Javascript.

### Academic Honesty

**DO NOT COPY FOR AN ASSIGNMENT** - Avoid plagiargism and adhere to the spirit of this [Academic Honesty Policy](https://www.freecodecamp.org/news/academic-honesty-policy/).
Loading