+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper
+mail.
+
+If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for
+the specific requirements.
+
+You should also get your employer (if you work as a programmer) or
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. For more information on this, and how to apply and follow
+the GNU AGPL, see .
diff --git a/README.md b/README.md
index 7fd3cc7..ef4afeb 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# bikelist
+# Bikelist
-This template should help get you started developing with Vue 3 in Vite.
+Shows a simple checklist preparing for a bike ride.
## Recommended IDE Setup
@@ -27,3 +27,20 @@ npm run dev
```sh
npm run build
```
+
+## License
+
+Copyright © Benjamin Stadlbauer
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as
+published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License for more details.
+
+A copy of the license is available at the root of the Git repository
+[bikelist](https://benjamin.stadlbauer.wien/git/Benjamin/bikelist).
diff --git a/index.html b/index.html
index bc19010..5f962d5 100644
--- a/index.html
+++ b/index.html
@@ -1,17 +1,35 @@
+
-
-
- Bike list
+
+ Bikelist
+ © Benjamin Stadlbauer
+ Source code
diff --git a/public/styles.css b/public/styles.css
index e4c9729..e5dc3af 100644
--- a/public/styles.css
+++ b/public/styles.css
@@ -1,3 +1,21 @@
+/*
+Bikelist - shows a simple checklist preparing for a bike ride.
+Copyright © Benjamin Stadlbauer
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as
+published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License for more details.
+
+A copy of the license is available at the root of the Git repository
+https://benjamin.stadlbauer.wien/git/Benjamin/bikelist
+*/
+
:root {
--white-neutral: #f4f4f9;
--white-hover: #ececff;
diff --git a/src/App.vue b/src/App.vue
index 4e0de40..acdafbe 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,3 +1,21 @@
+
+
- Fahrrad Liste
+ Fahrradliste
-
{{ task.task }}
diff --git a/src/main.js b/src/main.js
index feb092a..f6acb1d 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,4 +1,21 @@
-// import './assets/main.css'
+/*
+Bikelist - shows a simple checklist preparing for a bike ride.
+Copyright © Benjamin Stadlbauer
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as
+published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License for more details.
+
+A copy of the license is available at the root of the Git repository
+https://benjamin.stadlbauer.wien/git/Benjamin/bikelist
+*/
+
import { createApp } from 'vue'
import App from './App.vue'