Skip to content

Commit 7dd39db

Browse files
chore: initialize project metadata and CI/CD
Configure project identity, add MIT license, and set up Dependabot and release automation workflows.
1 parent 6ec9037 commit 7dd39db

4 files changed

Lines changed: 108 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
# Maintain dependency updates for npm packages
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
open-pull-requests-limit: 10
9+
labels:
10+
- "dependencies"
11+
- "npm"
12+
13+
# Keep GitHub Actions up-to-date
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: "weekly"
18+
open-pull-requests-limit: 5
19+
labels:
20+
- "dependencies"
21+
- "github-actions"

.github/workflows/release.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: 📦 Automatic Release Drafter & Builder
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*' # Trigger on tags prefixed with v, e.g. v1.0.0
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release:
13+
name: 🏷️ Compose & Pre-Compile Release
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: 📥 Checkout Repository Code
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
22+
- name: 🟢 Setup Node.js Build-Rig
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: 20
26+
cache: 'npm'
27+
28+
- name: 📦 Compile Standard Assets
29+
run: |
30+
npm ci
31+
npm run build
32+
33+
- name: 🚀 Create GitHub Release Draft
34+
uses: softprops/action-gh-release@v2
35+
with:
36+
draft: true
37+
prerelease: false
38+
generate_release_notes: true
39+
files: |
40+
dist/server.cjs
41+
package.json
42+
README.md
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 HALO Communications & Agency Group
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
11
{
2-
"name": "react-example",
3-
"private": true,
4-
"version": "0.0.0",
2+
"name": "halo-brand-communications-platform",
3+
"description": "Enterprise Brand Positioning, Strategic Pricing Guides & Active Security Audit Consoles built with React 19, TypeScript, and Gemini AI.",
4+
"version": "1.0.0",
5+
"license": "MIT",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/khoigaming2102pro/halo-brand-communications-platform.git"
9+
},
10+
"bugs": {
11+
"url": "https://github.com/khoigaming2102pro/halo-brand-communications-platform/issues"
12+
},
13+
"homepage": "https://github.com/khoigaming2102pro/halo-brand-communications-platform#readme",
14+
"keywords": [
15+
"react-19",
16+
"vite",
17+
"typescript",
18+
"express-js",
19+
"gemini-ai",
20+
"brand-positioning",
21+
"security-console",
22+
"github-workflows"
23+
],
524
"type": "module",
625
"scripts": {
726
"dev": "tsx server.ts",

0 commit comments

Comments
 (0)