Add file copyright notice headers
This commit is contained in:
parent
3469a9f946
commit
73c9315fbf
13 changed files with 108 additions and 15 deletions
|
@ -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 (
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue