Files
DLE/legal.en/COPYRIGHT_NOTICE.md

2.2 KiB

English | Русский

Copyright Notice

For use in code file headers

Add the following header at the top of each source file:

JavaScript

/**
 * @copyright 2024-2026 Alexander Viktorovich Tarabanov
 * @license Proprietary
 * @author Alexander Viktorovich Tarabanov <info@hb3-accelerator.com>
 * @see https://github.com/VC-HB3-Accelerator
 * @see https://hb3-accelerator.com
 */

Python

"""
@copyright 2024-2026 Alexander Viktorovich Tarabanov
@license Proprietary
@author Alexander Viktorovich Tarabanov <info@hb3-accelerator.com>
@see https://github.com/VC-HB3-Accelerator
@see https://hb3-accelerator.com
"""

Vue

<!--
@copyright 2024-2026 Alexander Viktorovich Tarabanov
@license Proprietary
@author Alexander Viktorovich Tarabanov <info@hb3-accelerator.com>
@see https://github.com/VC-HB3-Accelerator
@see https://hb3-accelerator.com
-->

CSS/SCSS

/*
@copyright 2024-2026 Alexander Viktorovich Tarabanov
@license Proprietary
@author Alexander Viktorovich Tarabanov <info@hb3-accelerator.com>
@see https://github.com/VC-HB3-Accelerator
@see https://hb3-accelerator.com
*/

HTML

<!--
@copyright 2024-2026 Alexander Viktorovich Tarabanov
@license Proprietary
@author Alexander Viktorovich Tarabanov <info@hb3-accelerator.com>
@see https://github.com/VC-HB3-Accelerator
@see https://hb3-accelerator.com
-->

Configuration files

{
  "_copyright": "2024-2026 Alexander Viktorovich Tarabanov",
  "_license": "Proprietary",
  "_author": "Alexander Viktorovich Tarabanov <info@hb3-accelerator.com>",
  "_website": "https://hb3-accelerator.com",
  "_github": "https://github.com/VC-HB3-Accelerator"
}

Key files for adding headers

Frontend

  • frontend/src/main.js
  • frontend/src/App.vue
  • All Vue components
  • All CSS/SCSS styles

Backend

  • backend/src/index.js
  • All modules and controllers
  • Configuration files

Documentation

  • README.md
  • docs/ — all documentation files

Automation

Consider using pre-commit hooks to automatically add copyright headers to new files.


All rights reserved. See LICENSE for details.