Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fgerards committed Aug 30, 2023
1 parent 675e061 commit a59225a
Show file tree
Hide file tree
Showing 24 changed files with 3,233 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
404.html,1693422549165,05cbc6f94d7a69ce2e29646eab13be2c884e61ba93e3094df5028866876d18b3
index.html,1693422549278,1ac785d641c4efc68b0fb7d0fc17f9270a01541c5170430ed1cc43766ccdf967
vite.svg,1693418502451,d3bbbc44b3ea71906a72bf2ec1a4716903e2e3d9f85a5007205a65d1f12e2923
images/marker-shadow.png,1689256175407,a20f37432c7e6c9e1bb368d4316376bf979a0326f59957a8b7193d6132677807
images/material-symbols_location-on-2x.png,1688903233916,746df54dab03e4ea105ae1de6f93c0c92f1b06a6cd34218212c58de8c0a8c557
images/material-symbols_location-on.png,1688903213128,fca06862ddb4064a8078b94eaba158b9f9cdc527eead4086476ade995d8cf7e9
images/material-symbols_location-on.svg,1688896476668,30decab32e606b9841bfa762ebeea05d9c3a697441f9e56dcfc04fade8f0929f
5 changes: 5 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "volunteeringukraine"
}
}
24 changes: 24 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
}
7 changes: 7 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Vue 3 + Vite

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

## Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
7 changes: 7 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/database.rules.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
/* Visit https://firebase.google.com/docs/database/security to learn more about security rules. */
"rules": {
".read": false,
".write": false
}
}
13 changes: 13 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
},
"database": {
"rules": "database.rules.json"
}
}
12 changes: 12 additions & 0 deletions VolunteeringUkraineUserGeneratedMap/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Loading

0 comments on commit a59225a

Please sign in to comment.