Skip to content

Commit

Permalink
PHP Vercel Communinity
Browse files Browse the repository at this point in the history
  • Loading branch information
GamerCleanVic committed Apr 29, 2024
1 parent d1b4720 commit 414faba
Show file tree
Hide file tree
Showing 121 changed files with 2,752 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig is awesome: http://EditorConfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{html}]
indent_style = tab
indent_size = tab
tab_width = 4

[*.{js,ts,json,yml,yaml,md}]
indent_style = space
indent_size = 2
10 changes: 10 additions & 0 deletions .github/.kodiak.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version = 1

[merge]
automerge_label = "automerge"
blacklist_title_regex = "^WIP.*"
blacklist_labels = ["WIP"]
method = "rebase"
delete_branch_on_merge = true
notify_on_conflict = true
optimistic_updates = false
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Bug report 🐛
about: Something is not working as expected!
---

# Bug report

- Version: x.y.z
- URL: Yes (*.now.sh) / No
- Repository: Yes / No

## Description

<!-- Describe it -->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Feature request 🚀
about: I would appreciate new feature or something!
---

# Feature Request

<!-- Describe it -->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/Question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Question ❓
about: Ask about anything!
---

# Question

<!-- Describe it -->
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: '11:00'
open-pull-requests-limit: 10
- package-ecosystem: npm
directory: "/packages/php"
schedule:
interval: daily
time: '11:00'
open-pull-requests-limit: 10
- package-ecosystem: npm
directory: "/packages/caddy"
schedule:
interval: daily
time: '11:00'
open-pull-requests-limit: 10
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Main workflow

on: [push, pull_request]

jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '14.x'

- name: Dependencies
run: make install

- name: Build
run: make build

- name: Tests
run: make test
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Node
/node_modules
/package-lock.json

# App
/dist

# Vercel
.vercel
Loading

0 comments on commit 414faba

Please sign in to comment.