Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a2b1778
Merge pull request #52 from Ebyte-Lab/main
Josephat-S May 25, 2026
350751f
add commander dependency and add cli flag support
Josephat-S May 25, 2026
0069278
Merge pull request #53 from Ebyte-Lab/feat/cli-flag-support
Josephat-S May 25, 2026
999d722
implement new command including opusify list, opusify list --template…
Josephat-S May 25, 2026
6382fd1
Merge pull request #54 from Ebyte-Lab/feat/commands
Josephat-S May 25, 2026
e545d62
add opusify add command to add some plugins/features after the projec…
Josephat-S May 25, 2026
062ed3b
Merge pull request #55 from Ebyte-Lab/feat/commands
Josephat-S May 25, 2026
f61e1fe
add automated template testing in CI
Josephat-S May 25, 2026
1c2a135
Merge pull request #56 from Ebyte-Lab/feat/template-testing
Josephat-S May 25, 2026
7bb99bb
feat[fetch]:added allow to fetch private template
ISONIC0788 May 25, 2026
454109a
Merge branch 'dev' of https://github.com/Ebyte-Lab/opusify-cli into f…
ISONIC0788 May 25, 2026
85f6169
Merge pull request #57 from Ebyte-Lab/feat/EnhanceCLU
ISONIC0788 May 25, 2026
38565c2
fix[]:Error Handling & Validation Improvements
ISONIC0788 May 25, 2026
c7cf864
Merge pull request #58 from Ebyte-Lab/45-error-handling-validation-im…
ISONIC0788 May 25, 2026
c0cc64b
add dynamic Navigation Generation Based on navCount
Josephat-S May 25, 2026
aff316e
Merge pull request #59 from Ebyte-Lab/feat/dynamic-navigation-based-o…
Josephat-S May 25, 2026
83de07c
implemented a full designed portfolio template
Josephat-S May 25, 2026
64b13e5
Merge pull request #60 from Ebyte-Lab/feat/portfolio-template
Josephat-S May 25, 2026
efea417
implemented ecommerce full design
Josephat-S May 26, 2026
0d3005a
Merge pull request #61 from Ebyte-Lab/feat/ecommerce-template
Josephat-S May 26, 2026
39cb912
Implemented full saas template
Josephat-S May 26, 2026
788db81
Merge pull request #62 from Ebyte-Lab/feat/saas-template
Josephat-S May 26, 2026
f51d370
implement full blog design with article pages
Josephat-S May 26, 2026
4f8c966
Merge pull request #63 from Ebyte-Lab/feat/blog-full-template
Josephat-S May 26, 2026
3f9ba1f
add vite + React SPA for Portfolio Template
Josephat-S May 26, 2026
c03aa37
Merge pull request #64 from Ebyte-Lab/feat/vite-and-spa-for-portifolio
Josephat-S May 26, 2026
90816c6
Implement Vite + React SPA for E-Commerce Template
Josephat-S May 26, 2026
2bf47fd
Merge pull request #65 from Ebyte-Lab/feat/vite-and-react-spa
Josephat-S May 26, 2026
635bb69
Implement Remaining 5 Design Themes
Josephat-S May 26, 2026
7e69c7b
Merge pull request #66 from Ebyte-Lab/feat/design-themes
Josephat-S May 26, 2026
f6464b0
add Add --verbose Flag and Debug Logging
Josephat-S May 26, 2026
977a8f5
Merge pull request #67 from Ebyte-Lab/feat/debug-logging
Josephat-S May 26, 2026
f72113f
Implement Security Hardening Module
Josephat-S May 26, 2026
1b8c5ea
Merge pull request #68 from Ebyte-Lab/feat/security
Josephat-S May 26, 2026
726bd9f
Add Prettier & ESLint Config to Generated Projects
Josephat-S May 26, 2026
ee7864a
Merge pull request #69 from Ebyte-Lab/feat/linting-config
Josephat-S May 26, 2026
1cb6cf4
Publish to npm Registry
Josephat-S May 26, 2026
054139b
Merge pull request #70 from Ebyte-Lab/config/npm
Josephat-S May 26, 2026
80f10e1
changed the deployment to be when tag is available and on main branch
Josephat-S May 26, 2026
7fe60da
Merge pull request #71 from Ebyte-Lab/config/npm
Josephat-S May 26, 2026
46d1aa2
refactor[templat]:added igonre for vite shop
ISONIC0788 May 26, 2026
0328d8d
Merge pull request #72 from Ebyte-Lab/45-error-handling-validation-im…
ISONIC0788 May 26, 2026
70edd7e
Add code of conduct
Josephat-S May 26, 2026
99fa3f8
Merge pull request #73 from Ebyte-Lab/config/code-of-conduct
Josephat-S May 26, 2026
0127612
Update contact email for reporting conduct issues
Josephat-S May 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish to npm

on:
push:
tags:
- 'v*'
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- run: npm ci

- run: npm run lint

- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
34 changes: 34 additions & 0 deletions .github/workflows/templates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Template Tests

on:
pull_request:
branches: [main, dev]
paths:
- 'templates/**'
- 'src/generate.js'
- 'src/dependencies.js'
- 'scripts/test-templates.js'

jobs:
test-templates:
runs-on: ubuntu-latest
timeout-minutes: 30

strategy:
fail-fast: false
matrix:
template: [portfolio, ecommerce, school, saas, blog]

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'

- name: Install CLI dependencies
run: npm ci

- name: Test ${{ matrix.template }} template
run: node scripts/test-single-template.js ${{ matrix.template }}
25 changes: 25 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Templates (fetched from GitHub at runtime)
templates/

# Development files
scripts/
.github/
.husky/
ISSUES.md
CONTRIBUTING.md

# Test outputs
my-opusify-app*/
test-*/

# Config files not needed in package
.eslintrc.json
.prettierrc
.gitignore

# Dependencies
node_modules/

# OS files
.DS_Store
Thumbs.db
56 changes: 56 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Contributor Covenant Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity and
orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment:

- Using welcoming and inclusive language
- Being respectful of differing viewpoints and experiences
- Gracefully accepting constructive criticism
- Focusing on what is best for the community
- Showing empathy towards other community members

Examples of unacceptable behavior:

- The use of sexualized language or imagery, and sexual attention or advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information without explicit permission
- Other conduct which could reasonably be considered inappropriate in a professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.

## Scope

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders at **conduct@ebytesoftlab.dev**.

All complaints will be reviewed and investigated promptly and fairly.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org),
version 2.1, available at
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html).
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Ebyte Soft Lab

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading