ваше сообщение коммита

This commit is contained in:
2025-11-20 21:11:44 +03:00
parent 970b53e5ba
commit b295bb9bd9
23 changed files with 9807 additions and 2 deletions

View File

@@ -0,0 +1,101 @@
# 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 <info@hb3-accelerator.com>
* @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 <info@hb3-accelerator.com>
@see https://github.com/VC-HB3-Accelerator
@see https://hb3-accelerator.com
"""
```
## For Vue files
```vue
<!--
@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
```css
/*
@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
```html
<!--
@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
```json
{
"_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](LICENSE.md) file for details.