Skip to content

Commit

Permalink
chore: init
Browse files Browse the repository at this point in the history
  • Loading branch information
chimpdev committed Nov 6, 2024
0 parents commit 2793e7d
Show file tree
Hide file tree
Showing 84 changed files with 10,407 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DISCORD_BOT_TOKEN=''
MONGODB_URI=''
MONGODB_NAME=''
KV_TOKEN_ENCRYPTION_SECRET=''
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Learn how to add code owners here:
# https://help.github.com/en/articles/about-code-owners

* @chimpdev
21 changes: 21 additions & 0 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Code of Conduct

As contributors and maintainers of the project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests, and any other activities.

We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.

Examples of unacceptable behavior by participants include:

- The use of sexualized language or imagery
- Personal attacks
- Trolling or insulting/derogatory comments
- Public or private harassment
- Publishing others' private information, such as physical or electronic addresses, without explicit permission
- Other unethical or unprofessional conduct

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.

This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [insert contact information]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

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

We welcome contributions to the project! To ensure smooth collaboration, please follow these guidelines when contributing:

## Reporting Issues

If you encounter any bugs, unexpected behavior, or have suggestions for improvements, please open an issue on our [GitHub repository](https://github.com/discordplace/lantern/issues) with a clear description of the problem or feature request. Make sure to include any relevant details, such as error messages, screenshots, or steps to reproduce the issue.

## Pull Requests

We encourage you to submit pull requests for bug fixes, feature additions, or other improvements to the project. Before creating a pull request, please ensure the following:

- Fork the repository and create a new branch for your changes.
- Follow the coding style and conventions used in the project.
- Write clear and concise commit messages that follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification.
- Update documentation as necessary.

Once your pull request is ready, submit it for review against the `main` branch. We'll review it as soon as possible and provide feedback or merge it if everything looks good.

## Code Style

Please adhere to the coding style and conventions used throughout the project. Consistent coding style helps maintain readability and makes collaboration easier for everyone.

## Licensing

By contributing to this project, you agree to license your contributions under the [GPL v3 License](LICENSE). This ensures that your contributions can be freely used, modified, and distributed by others.

## Code of Conduct

Please review and abide by our [Code of Conduct](CODE_OF_CONDUCT.md) when participating in this project. We are committed to fostering an inclusive and welcoming community for all.

If you have any questions or need further assistance, feel free to reach out to the project maintainers. Thank you for your contributions!
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: chimpdev
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/issue-with-website.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Issue with Lantern
about: Issues that related to Lantern
title: ''
labels: ''
assignees: chimpdev

---

**Describe the Bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected Behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional Context**
Add any other context about the problem here.
24 changes: 24 additions & 0 deletions .github/actions/setup-node-env/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Setup Node Environment"
description: "Setup Node, cache and clean install"
inputs:
node-version:
description: "the Node.js version to use"
required: true
cache-path:
description: "path to cache folders and files"
required: true
cache-key:
description: "the key for caching"
required: true
runs:
using: composite
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
- uses: actions/cache@v4
with:
path: ${{ inputs.cache-path }}
key: ${{ inputs.cache-key }}
- run: pnpm install --frozen-lockfile
shell: bash
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: 'pnpm'
directory: '/'
schedule:
interval: 'weekly'
27 changes: 27 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
- name: 'Bug'
color: 'FF6347'
description: Issues related to bugs specifically in the project.
- name: 'Feature'
color: '4682B4'
description: Requests or discussions related to new features in the project.
- name: 'Security'
color: 'FF0000'
description: Issues related to security vulnerabilities in the project.
- name: 'Performance'
color: '32CD32'
description: Discussions or problems regarding performance optimizations in the project.
- name: 'Database'
color: 'FFA500'
description: Issues related to database related problems or discussions.
- name: 'Documentation'
color: '8A2BE2'
description: Issues related to documentation or the lack of it.
- name: 'Question'
color: 'FFD700'
description: Issues that are questions or require clarification.
- name: 'Invalid'
color: '4682B4'
description: Issues that are invalid or do not belong to the project.
- name: 'Duplicate'
color: 'FFD700'
description: Issues that are duplicates of other issues.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Build and Deploy'

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build-and-deploy:
name: Build and Deploy
runs-on: ubuntu-latest

steps:
- name: Connect to SSH and run commands
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
password: ${{ secrets.SSH_PASSWORD }}
port: ${{ secrets.SSH_PORT }}
script: |
./build.sh
17 changes: 17 additions & 0 deletions .github/workflows/conventional-commits-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Conventional Commits

on:
pull_request:
branches:
- main

jobs:
build:
name: Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: webiny/action-conventional-commits@v1.3.0
with:
allowed-commit-types: "feat,fix,docs,style,refactor,perf,test,chore,build,ci"
34 changes: 34 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "ESLint"

on:
pull_request:
branches:
- main

jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- uses: ./.github/actions/setup-node-env
with:
node-version: 18
cache-path: /node_modules
cache-key: "${{hashFiles('pnpm-lock.yaml')}}"

- name: Run lint script
run: |
npm run lint
27 changes: 27 additions & 0 deletions .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Label sync
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/labels.yml'

permissions:
contents: write

jobs:
label-sync:
name: Label sync
runs-on: ubuntu-latest
if: github.repository_owner == 'discordplace'
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Label sync
uses: crazy-max/ghaction-github-labeler@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Please

on:
workflow_dispatch:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.env
node_modules/
logs/
dist/
database-backups/
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx --no -- commitlint --edit "$1"
14 changes: 14 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Copyright (C) 2024 Gökhan Bulut

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Loading

0 comments on commit 2793e7d

Please sign in to comment.