Skip to content

Commit 768425a

Browse files
authored
Merge pull request #12 from coldbox-modules/development
version bump
2 parents 999d595 + 5076c95 commit 768425a

33 files changed

+854
-370
lines changed

.cfconfig.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,22 @@
55
"disableInternalCFJavaComponents":false,
66
"inspectTemplate":"always",
77
"requestTimeout":"0,0,0,90",
8-
"robustExceptionEnabled":true
8+
"robustExceptionEnabled":true,
9+
"datasources": {
10+
"coolblog": {
11+
"class":"${DB_CLASS}",
12+
"dbdriver": "MySQL",
13+
"dsn":"jdbc:mysql://{host}:{port}/{database}",
14+
"custom":"useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true",
15+
"host":"${DB_HOST:127.0.0.1}",
16+
"username": "${DB_USER:root}",
17+
"password": "${DB_PASSWORD}",
18+
"database": "coolblog",
19+
"port": "${DB_PORT:3306}",
20+
"storage":"false",
21+
"bundleName": "${DB_BUNDLENAME}",
22+
"bundleVersion": "${DB_BUNDLEVERSION}",
23+
"validate":"false"
24+
}
25+
}
926
}

.env.template

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
GEOLOCATION_DEVELOPER_KEY=
2+
DB_HOST=127.0.0.1
3+
DB_PORT=3306
4+
DB_USER=root
5+
DB_PASSWORD=mysql
6+
DB_CLASS=com.mysql.cj.jdbc.Driver
7+
DB_BUNDLEVERSION=8.0.19
8+
DB_BUNDLENAME=com.mysql.cj

.github/CODE_OF_CONDUCT.MD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Code of Conduct
2+
3+
Please see it in our [Contributing Guidelines](../CONTRIBUTING.md#code-of-conduct).
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+
---
5+
6+
<!-- Thanks for reporting an issue! Please fill out the blanks below. -->
7+
8+
## What are the steps to reproduce this issue?
9+
10+
1.
11+
2.
12+
3.
13+
14+
## What happens?
15+
16+
17+
18+
## What were you expecting to happen?
19+
20+
21+
22+
## Any logs, error output, etc?
23+
24+
25+
26+
## Any other comments?
27+
28+
29+
30+
## What versions are you using?
31+
32+
**Operating System:**
33+
**Package Version:**
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature Request
3+
about: Request a new feature or enhancement
4+
---
5+
6+
<!-- Thanks for taking the time to recommend a feature! Please fill out the form below -->
7+
8+
## Summary
9+
10+
<!-- High level description of what this feature is -->
11+
12+
## Detailed Description
13+
14+
<!-- Lets get into the weeds here -->
15+
16+
## Possible Implementation Ideas
17+
18+
<!-- If you already have some idea of how to implement this, this would be the place to put it -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Description
2+
3+
Please include a summary of the changes and which issue(s) is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
4+
5+
**Please note that all PRs must have tests attached to them**
6+
7+
IMPORTANT: Please review the [CONTRIBUTING.md](../CONTRIBUTING.md) file for detailed contributing guidelines.
8+
9+
## Issues
10+
11+
All PRs must have an accompanied issue. Please make sure you created it and linked it here.
12+
13+
## Type of change
14+
15+
Please delete options that are not relevant.
16+
17+
- [ ] Bug Fix
18+
- [ ] Improvement
19+
- [ ] New Feature
20+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
21+
- [ ] This change requires a documentation update
22+
23+
## Checklist
24+
25+
- [ ] My code follows the style guidelines of this project [cfformat](../.cfformat.json)
26+
- [ ] I have commented my code, particularly in hard-to-understand areas
27+
- [ ] I have made corresponding changes to the documentation
28+
- [ ] I have added tests that prove my fix is effective or that my feature works
29+
- [ ] New and existing unit tests pass locally with my changes

.github/SECURITY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Security Policy
2+
3+
Please see it in our [Contributing Guidelines](../CONTRIBUTING.md#security-vulnerabilities).

.github/SUPPORT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Support & Help
2+
3+
Please see it in our [Contributing Guidelines](../CONTRIBUTING.md#support-questions).

.github/workflows/ci.yml

Lines changed: 0 additions & 111 deletions
This file was deleted.

.github/workflows/cron.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Daily Tests
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *' # Runs at 00:00 UTC every day
6+
7+
jobs:
8+
tests:
9+
uses: ./.github/workflows/tests.yml
10+
secrets: inherit

0 commit comments

Comments
 (0)