# Copyright Notice ## For use in code file headers Add the following header to the beginning of each source code file: ```javascript /** * @copyright 2024-2025 Tarabanov Alexander Viktorovich * @license Proprietary * @author Tarabanov Alexander Viktorovich * @see https://github.com/VC-HB3-Accelerator * @see https://hb3-accelerator.com */ ``` ## For Python files ```python """ @copyright 2024-2025 Tarabanov Alexander Viktorovich @license Proprietary @author Tarabanov Alexander Viktorovich @see https://github.com/VC-HB3-Accelerator @see https://hb3-accelerator.com """ ``` ## For Vue files ```vue ``` ## For CSS/SCSS files ```css /* @copyright 2024-2025 Tarabanov Alexander Viktorovich @license Proprietary @author Tarabanov Alexander Viktorovich @see https://github.com/VC-HB3-Accelerator @see https://hb3-accelerator.com */ ``` ## For HTML files ```html ``` ## For configuration files ```json { "_copyright": "2024-2025 Tarabanov Alexander Viktorovich", "_license": "Proprietary", "_author": "Tarabanov Alexander Viktorovich ", "_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](LICENSE.md) file for details.