diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md new file mode 100644 index 0000000..aa0005f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -0,0 +1,37 @@ +--- +name: Bug report +about: Report bugs or strange behaviours +title: "[BUG]" +labels: bug +assignees: '' + +--- + +## Expected Behavior + + +## Current Behavior + + +## Possible Solution + + +## Steps to Reproduce + + +1. +2. +3. +4. + +## Context (Environment) + + + + + +## Detailed Description + + +## Possible Implementation + diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md new file mode 100644 index 0000000..ba424d4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -0,0 +1,20 @@ +--- +name: Feature Request +about: Suggest an idea or feature for this project +title: "[FEATURE]" +labels: enhancement +assignees: '' + +--- + +**Please describe your idea or feature request.** + + +**Describe the solution you'd like** + + +**Describe alternatives you've considered** + + +**Additional context** + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..28d582c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +# Related Issue +- Issue goes here (#issueNumber) + +## Proposed changes +- change 1 +- change 2 + +## Additional info +- Some important or technical information diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..0334bef --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3.7' +services: + database: + image: mysql:8.0 + environment: + MYSQL_ROOT_PASSWORD: 123456 + MYSQL_DATABASE: cotas + ports: + - '3306:3306' + expose: + - '3306' + volumes: + - ./cotas-mysql:/var/lib/mysql +volumes: + cotas-mysql: \ No newline at end of file