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

This commit is contained in:
2026-02-20 14:18:08 +03:00
parent 8702a355a1
commit 24e560fc83
44 changed files with 8354 additions and 95 deletions

View File

@@ -0,0 +1,104 @@
**English** | [Русский](../legal.ru/COPYRIGHT_NOTICE.md)
# Copyright Notice
## For use in code file headers
Add the following header at the top of each source file:
### JavaScript
```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
```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
```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
```css
/*
@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
```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
```json
{
"_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](../LICENSE) for details.