Skip to content

Commit 10ba1b0

Browse files
committed
init
0 parents  commit 10ba1b0

10 files changed

Lines changed: 1630 additions & 0 deletions

File tree

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
dist
3+
.wwebjs_auth
4+
*.log
5+
*.env

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
dist
3+
.wwebjs_auth
4+
*.log
5+
*.env

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:24
2+
WORKDIR /app
3+
COPY package*.json ./
4+
RUN npm install
5+
COPY . .
6+
RUN npm run build || true
7+
CMD ["npx", "ts-node", "src/index.ts"]

LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**MIT License with Commons Clause and Commercial Licensing**
2+
3+
Copyright (c) 2025 Melvin Jones Repol
4+
5+
Permission is hereby granted, free of charge, to use, copy, modify, and distribute the software under the MIT License, with the following additional condition:
6+
7+
1. **Commercial Use Restriction**: You may not use the software for commercial purposes unless you obtain a commercial license. Commercial use includes, but is not limited to, the use of the software as part of any service offered for a fee, or any use that generates revenue either directly or indirectly.
8+
9+
2. **Commercial Licensing**: To use this software for commercial purposes, you must obtain a commercial license by paying the required fee. For licensing inquiries, pricing, and terms, please contact mrepol742@gmail.com.
10+
11+
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.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# project-canis
2+
Canis Major and the constellation Canis Minor, the “lesser dog,” are widely regarded as two hunting hounds that follow Orion, the great hunter of ancient Greek legends. The hounds are often pictured chasing a hare, represented by the constellation Lepus, which lies west of Canis Major at Orion's feet.
3+

0 commit comments

Comments
 (0)