Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iftikar R. Tsani #36

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# kanban-app
# kanban-app

## For API documentation, please visit this [link](https://documenter.getpostman.com/view/9351386/TVmPBHGY)
## [Kanban App](https://kanban-a9a39.web.app)
9 changes: 9 additions & 0 deletions client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
hacktiv8_logo_DGg_icon.5bc3ac00.ico,1607097399644,5095696368eef99c81b8788cbbb141128be940e0e30e4b5318dbd499c98da0a6
index.html,1607097399636,01009c87a1c7255eaef82fe2108e29e297831b52d1a4aff3a34625b53b65fb21
style.7d402f35.css,1607097399636,afb04947941d9832750fdd8b1cb8c5e7303a8804f7d2adf446109aaa7b3b9dac
style.7d402f35.css.map,1607097399920,eb1e1cc0e720dd2eafb57769754f08b2ff0d86272b44413681b73f0dd49b898a
style.7d402f35.js,1607097399800,43574fff9b0b92a95d563d084d74fab5c39c99fd3c868fe530dd363b8cdeedc3
style.7d402f35.js.map,1607097399920,7b30907a1e5383ccbd5759578856b34c8656a9141f6ee23e71518422f5d45a8d
hacktiv8-logo.8f1a76b9.png,1607097399644,00ffecd6f1579fb76750ae97dad8ec5ea15301aa92e54040d38d32062c2a06c6
main.1e43358e.js,1607097399800,094075752da7d9459f5080a55c9468fd59ebff9eed7069d55e94574c80d15cc8
main.1e43358e.js.map,1607097399920,63e0d2de3f16ae126bff6eb2daf54a879e92672c4076ad38f02dfe905409da1a
5 changes: 5 additions & 0 deletions client/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanban-a9a39"
}
}
3 changes: 3 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.cache
dist
16 changes: 16 additions & 0 deletions client/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
36 changes: 36 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-signin-client_id" content="177968975168-k4rm36q3onilohv0f7a2euqm5blg54h2.apps.googleusercontent.com">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="shortcut icon" href="./templates/assets/hacktiv8_logo_DGg_icon.ico" type="image/x-icon">
<link rel="stylesheet" href="./templates/style.css">
<title>Kanban</title>
</head>

<body>
<div id="app"></div>

<!-- Bootstrap Script -->
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script> -->

<!-- Google Sign-In Script -->
<script src="https://apis.google.com/js/platform.js" async defer></script>

<!-- Main Js -->
<script src="./src/main.js"></script>
</body>

</html>
Loading