mitch #1

Merged
gitea merged 6 commits from mitch into develop 2026-07-06 22:01:41 +00:00
4 changed files with 40 additions and 0 deletions

22
.editorconfig Normal file
View File

@ -0,0 +1,22 @@
#https://editorconfig.org/
#INI format
root = true
[*]
charset = utf-8
indent_style = tab
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.yml]
indent_style = space
indent_size = 2
[*.md]
#EditorConfig for VS Code v0.16.4
#Known Issues
#trim_trailing_whitespace = false is not applied when user/workspace setting of files.trimTrailingWhitespace is set to true.
trim_trailing_whitespace = false

4
.gitignore vendored
View File

@ -0,0 +1,4 @@
*.log
.DS_Store
.env
.env.local

12
.woodpecker.yml Normal file
View File

@ -0,0 +1,12 @@
steps:
# 疎通テスト
# hello:
# image: alpine:latest
# commands:
# - echo "Woodpecker is working!"
# PHPのLintテスト
php-lint:
image: php:8.3-cli
commands:
- find . -name "*.php" -print0 | xargs -0 -n1 php -l

2
index.php Normal file
View File

@ -0,0 +1,2 @@
<?php
echo "Hello, World! - 1";