Add file copyright notice headers

This commit is contained in:
zervo 2025-07-23 23:20:51 +02:00
parent 3469a9f946
commit 73c9315fbf
13 changed files with 108 additions and 15 deletions

View file

@ -1,3 +1,12 @@
/*
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
package app package app
import ( import (

View file

@ -1,3 +1,12 @@
/*
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
package main package main
import "git.zervo.org/zervo/alpacca/app" import "git.zervo.org/zervo/alpacca/app"

View file

@ -1,3 +1,12 @@
/*
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
package alpacca package alpacca
import "embed" import "embed"

View file

@ -1,3 +1,12 @@
<!--
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>

View file

@ -1,3 +1,12 @@
<!--
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
-->
<template> <template>
<v-app> <v-app>
<v-main> <v-main>

View file

@ -1,3 +1,12 @@
<!--
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
-->
<template> <template>
<v-container class="fill-height" max-width="900"> <v-container class="fill-height" max-width="900">
<div> <div>

View file

@ -1,8 +1,13 @@
/** /*
* main.ts Alpacca: The modern package repository hosting platform.
* Copyright (C) 2025, Zervó Zadachin
* Bootstraps Vuetify and other plugins then mounts the App`
*/ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
/* main.ts: Bootstraps Vuetify and other plugins then mounts the App */
// Composables // Composables
import { createApp } from 'vue' import { createApp } from 'vue'

View file

@ -1,8 +1,13 @@
/** /*
* plugins/index.ts Alpacca: The modern package repository hosting platform.
* Copyright (C) 2025, Zervó Zadachin
* Automatically included in `./src/main.ts`
*/ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
/* plugins/index.ts: Registers Vue plugins */
// Types // Types
import type { App } from 'vue' import type { App } from 'vue'

View file

@ -1,8 +1,13 @@
/** /*
* plugins/vuetify.ts Alpacca: The modern package repository hosting platform.
* Copyright (C) 2025, Zervó Zadachin
* Framework documentation: https://vuetifyjs.com`
*/ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
/* plugins/vuetify.ts: Plugin initializer for vuetify */
// Composables // Composables
import { createVuetify } from 'vuetify' import { createVuetify } from 'vuetify'

View file

@ -7,6 +7,8 @@ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT. The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/ */
/* router/index.ts: Registers the Vue router and routes */
import { createRouter, createWebHistory } from 'vue-router' import { createRouter, createWebHistory } from 'vue-router'
import Index from '@/views/Index.vue' import Index from '@/views/Index.vue'
import { withLayout } from './layoutWrapper' import { withLayout } from './layoutWrapper'

View file

@ -7,6 +7,8 @@ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT. The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/ */
/* router/layoutWrapper.ts: Simple layout implementation that wraps views in layouts */
import { defineComponent, h } from 'vue' import { defineComponent, h } from 'vue'
import DefaultLayout from '@/layouts/DefaultLayout.vue' import DefaultLayout from '@/layouts/DefaultLayout.vue'

View file

@ -1,3 +1,12 @@
<!--
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
-->
<template> <template>
<HelloWorld /> <HelloWorld />
</template> </template>

View file

@ -1,3 +1,14 @@
/*
Alpacca: The modern package repository hosting platform.
Copyright (C) 2025, Zervó Zadachin
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
*/
/* vite.config.ts: Vite configuration */
/* eslint-disable perfectionist/sort-imports */ /* eslint-disable perfectionist/sort-imports */
// Plugins // Plugins
import Vue from '@vitejs/plugin-vue' import Vue from '@vitejs/plugin-vue'