105 lines
2.2 KiB
Markdown
105 lines
2.2 KiB
Markdown
**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.
|