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
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
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
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>
<html lang="en">
<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>
<v-app>
<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>
<v-container class="fill-height" max-width="900">
<div>

View file

@ -1,8 +1,13 @@
/**
* main.ts
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
/*
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.
*/
/* main.ts: Bootstraps Vuetify and other plugins then mounts the App */
// Composables
import { createApp } from 'vue'

View file

@ -1,8 +1,13 @@
/**
* plugins/index.ts
*
* Automatically included in `./src/main.ts`
*/
/*
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.
*/
/* plugins/index.ts: Registers Vue plugins */
// Types
import type { App } from 'vue'

View file

@ -1,8 +1,13 @@
/**
* plugins/vuetify.ts
*
* Framework documentation: https://vuetifyjs.com`
*/
/*
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.
*/
/* plugins/vuetify.ts: Plugin initializer for vuetify */
// Composables
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.
*/
/* router/index.ts: Registers the Vue router and routes */
import { createRouter, createWebHistory } from 'vue-router'
import Index from '@/views/Index.vue'
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.
*/
/* router/layoutWrapper.ts: Simple layout implementation that wraps views in layouts */
import { defineComponent, h } from '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>
<HelloWorld />
</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 */
// Plugins
import Vue from '@vitejs/plugin-vue'