Files
DLE/legal-en/COPYRIGHT_NOTICE.md

2.2 KiB

Copyright Notice

For use in code file headers

Add the following header to the beginning of each source code file:

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

For Python files

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

For Vue files

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

For CSS/SCSS files

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

For HTML files

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

For configuration files

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

Important 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

It is recommended to set up pre-commit hooks for automatically adding copyright headers to new files.


All rights reserved. See the LICENSE.md file for details.