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
|
package app
|
||||||
|
|
||||||
import (
|
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
|
package main
|
||||||
|
|
||||||
import "git.zervo.org/zervo/alpacca/app"
|
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
|
package alpacca
|
||||||
|
|
||||||
import "embed"
|
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>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<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>
|
<template>
|
||||||
<v-app>
|
<v-app>
|
||||||
<v-main>
|
<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>
|
<template>
|
||||||
<v-container class="fill-height" max-width="900">
|
<v-container class="fill-height" max-width="900">
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
/**
|
/*
|
||||||
* 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'
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
/**
|
/*
|
||||||
* 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'
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
/**
|
/*
|
||||||
* 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'
|
||||||
|
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -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'
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Add table
Reference in a new issue