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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# kanban-app
# kanban
Membuat kanban web app

Link to documentation:
https://documenter.getpostman.com/view/12546332/TVK5d1qq

Link to heroku:
https://kanbran-h8.herokuapp.com/

Link to firebase hosting:
https://kanbran-h8.web.app/
7 changes: 7 additions & 0 deletions client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
index.html,1599855885486,aeac3e77ac4d6fc63d2048151ad7c02aa81f87f34aeff6d5eb1b351e3cb111ae
style.e308ff8e.css,1599852980395,26a7d80af786355d1d8c854d43e8872ceb7e31bb48467a486ae73c5c5bc655e1
style.e308ff8e.js,1599852980399,c3e09f3240056f19e41e94141e63cbdb52f00fca4d1ff1f798265eed1cc3ff48
style.e308ff8e.css.map,1599852980415,4ffa8555e8cd1a360f19165b8b44d018281c4c8bc5ddbfa12d956681f3e00f7e
style.e308ff8e.js.map,1599853002523,5c17b10f9e4ffdd18576b7b5a7ea9825eca341825f7a142305ca7382cf5e3865
main.1e43358e.js,1599856539902,2352946c27a95bb381cc3f45007f24fe68391380a5788754dcfe1b81b78032a2
main.1e43358e.js.map,1599856541038,d057402432b9b7f04e9f77c317195caa94597c973c76eca3a3f561ccd165cf61
5 changes: 5 additions & 0 deletions client/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanbran-h8"
}
}
3 changes: 3 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.cache
dist
node_modules
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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"
}
]
}
}
16 changes: 16 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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">
<title>KanBran</title>
</head>
<body>
<div id="app"></div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="/src/main.js"></script>
</body>
</html>
261 changes: 261 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vuedraggable": "^2.24.1"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.2.0",
"vue-template-compiler": "^2.6.12"
}
}
Loading