Skip to content
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
8 changes: 8 additions & 0 deletions client-vue-parcel/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
index.html,1599818854262,eee901dd20a829720413738fe732100104ba320951bc5ef2b957d7f54a2fffbf
main.1e43358e.css,1599818854262,686ecc743f04e356a37dcc9ced5a97be6a8115261e4e92c85a99c3c3525ea036
style.e308ff8e.css,1599818854266,005145f87fc27130516f3f7e0f235e889329ca1e6ec648fbbb6a86a3cfacb3d5
style.e308ff8e.css.map,1599818855166,96ea5f335fa52f9b5665cd79f1244ce6f51b0d47631a56fe52e2831a1dfdf23d
style.e308ff8e.js.map,1599818855162,15ac911e81e127e48558b38dc95e1f033d7c5c85ac595bec6990d5caecbe54c8
style.e308ff8e.js,1599818854778,aef40d4382cb840c13d508953722e31a88ee7346a6aecedd112d3550867b4657
main.1e43358e.js,1599818854778,7893b3362f1869120c28cbbfb9633139f6e71d21edf2c2f64523666be44232a8
main.1e43358e.js.map,1599818855162,50afeece7fd5ed15fb8abbf96bfadb05070e2a0ef6e7834059f27e16bef39392
5 changes: 5 additions & 0 deletions client-vue-parcel/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanban-app-faudzan"
}
}
3 changes: 3 additions & 0 deletions client-vue-parcel/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.cache
16 changes: 16 additions & 0 deletions client-vue-parcel/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"
}
]
}
}
18 changes: 18 additions & 0 deletions client-vue-parcel/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/2eed7bf050.js" crossorigin="anonymous"></script>
<meta name="google-signin-client_id" content="953795490728-7anj5g54bd1c95c091pfonsnkfr29gsc.apps.googleusercontent.com">

<title>Kanban App</title>
</head>
<body>
<div id="app"></div>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="./src/main.js"></script>
</body>
</html>
Loading