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

setup #39

Open
wants to merge 13 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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# kanban-app
# kanban-app
https://kanban-app-297601.web.app
5 changes: 5 additions & 0 deletions client-components/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
index.html,1607100261535,3b06f40630ce599e17a63494a1e9dd3c503c11abacc89131ed7a112ae2362c2e
main.1e43358e.css,1607100261543,44b84c7c9df2721f92145195e8c7897d91f8c5b268a8f5c82dc0f08ced4bcf6c
main.1e43358e.css.map,1607100261579,121d99952519e0935765aa1bb1cd8cf8e4504ab71ae5a887e3ce792316b4db5f
main.1e43358e.js,1607100261803,12e575c21c086954537646030838371c642d093ee492645225ade29760f33962
main.1e43358e.js.map,1607100262131,92a5215be1dbb3a9a828d89ae30359516417294bff6208222be3ffbeb0fb6622
5 changes: 5 additions & 0 deletions client-components/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "kanban-app-297601"
}
}
3 changes: 3 additions & 0 deletions client-components/.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-components/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"
}
]
}
}
23 changes: 23 additions & 0 deletions client-components/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">



<meta name="google-signin-client_id" content="166375431684-efkve6dh1ehpk1ic1m0sd818as9bpf78.apps.googleusercontent.com">
<title>Kanban App</title>
</head>

<body>
<div id="app"></div>
<script src="./src/main.js"></script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
</body>

</html>
Loading