Skip to content

Commit 373656b

Browse files
author
michael
committed
First commit
0 parents  commit 373656b

File tree

347 files changed

+24577
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

347 files changed

+24577
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "logchimp",
3+
"build": {
4+
"dockerfile": "../.gitpod.Dockerfile"
5+
},
6+
7+
"features": {
8+
"ghcr.io/devcontainers/features/sshd:1": {
9+
"version": "latest"
10+
}
11+
},
12+
13+
"forwardPorts": [
14+
"8080:8080",
15+
"3000:3000",
16+
"5432:5432",
17+
"1080:1080",
18+
"1025:1025"
19+
],
20+
"portsAttributes": {
21+
"8080": {
22+
"label": "Theme"
23+
},
24+
"3000": {
25+
"label": "API Server"
26+
},
27+
"5432": {
28+
"label": "PostgreSQL Database"
29+
},
30+
"1080": {
31+
"label": "Email client"
32+
},
33+
"1025": {
34+
"label": "Email injection"
35+
}
36+
},
37+
38+
// Visual Studio Code extensions
39+
"extensions": [
40+
"biomejs.biome",
41+
"wix.vscode-import-cost",
42+
"bradlc.vscode-tailwindcss",
43+
"Vue.volar",
44+
"editorconfig.editorconfig",
45+
"ZixuanChen.vitest-explorer",
46+
"syler.sass-indented",
47+
"eamodio.gitlens"
48+
],
49+
50+
"postCreateCommand": "bash ../scripts/gitpod-init.sh"
51+
}

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_style = space
6+
tab_width = 2
7+
indent_size = 2
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.sass]
12+
indent_style = tab

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @mittalyashu

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
github: ['logchimp']
2+
open_collective: logchimp
3+
patreon: mittalyashu
4+
custom: ['https://www.buymeacoffee.com/mittalyashu']
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug, wait for review
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behaviour:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behaviour**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- LogChimp [e.g. v0.2.0]
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Browser version [e.g. v22]
31+
32+
**Additional context**
33+
Add any other context about the problem here.

.github/images/readme.png

347 KB
Loading

.github/workflows/cla.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "CLA Assistant"
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_target:
7+
types: [opened, closed, synchronize]
8+
9+
jobs:
10+
CLAssistant:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: "CLA Assistant"
14+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
15+
# Beta Release
16+
uses: cla-assistant/[email protected]
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
20+
with:
21+
path-to-signatures: "signatures/version1/cla.json"
22+
path-to-document: "https://github.com/codecarrotlabs/cla-document/blob/main/readme.md"
23+
branch: "main"
24+
allowlist: mittalyashu,renovate[bot],dependabot[bot]
25+
remote-organization-name: "logchimp"
26+
remote-repository-name: "cla-signatures"
27+
custom-notsigned-prcomment: |
28+
Thank you for your interest in contributing to open source software projects (“Projects”) made available by CodeCarrot.
29+
30+
If you have any questions respecting this Agreement, please contact [[email protected]](mailto:[email protected]).
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
workflow_dispatch:
9+
schedule:
10+
- cron: '0 0 * * *'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
language: ['javascript']
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@v3
25+
with:
26+
fetch-depth: 2
27+
28+
- name: Initialize CodeQL
29+
uses: github/codeql-action/init@v2
30+
with:
31+
languages: ${{ matrix.language }}
32+
33+
- name: Autobuild
34+
uses: github/codeql-action/autobuild@v2
35+
36+
# ℹ️ Command-line programs to run using the OS shell.
37+
# 📚 https://git.io/JvXDl
38+
39+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
40+
# and modify them (or add more) to build your code if your project
41+
# uses a compiled language
42+
43+
#- run: |
44+
# make bootstrap
45+
# make release
46+
47+
- name: Perform CodeQL Analysis
48+
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)