Skip to content

Commit 3ed8497

Browse files
committed
.
1 parent 6baa681 commit 3ed8497

28 files changed

+824
-821
lines changed

.github/FUNDING.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# These are supported funding model platforms
2-
3-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4-
patreon: # Replace with a single Patreon username
5-
open_collective: # Replace with a single Open Collective username
6-
ko_fi: # Replace with a single Ko-fi username
7-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
liberapay: Deanosim
10-
issuehunt: # Replace with a single IssueHunt username
11-
otechie: # Replace with a single Otechie username
12-
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: Deanosim
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/ISSUE_TEMPLATE/bug_report.md

+38-38
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
---
2-
name: Bug report
3-
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
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 behavior:
15-
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
18-
4. See error
19-
20-
**Expected behavior**
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-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
30-
31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
36-
37-
**Additional context**
38-
Add any other context about the problem here.
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
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 behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
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+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
+20-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
---
2-
name: Feature request
3-
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
8-
---
9-
10-
**Is your feature request related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12-
13-
**Describe the solution you'd like**
14-
A clear and concise description of what you want to happen.
15-
16-
**Describe alternatives you've considered**
17-
A clear and concise description of any alternative solutions or features you've considered.
18-
19-
**Additional context**
20-
Add any other context or screenshots about the feature request here.
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

+111-111
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,111 @@
1-
# Created by https://www.gitignore.io/api/linux,ansible,windows,visualstudiocode
2-
# Edit at https://www.gitignore.io/?templates=linux,ansible,windows,visualstudiocode
3-
4-
### Ansible ###
5-
*.retry
6-
hosts.yml
7-
8-
### Linux ###
9-
*~
10-
11-
# temporary files which can be created if a process still has a handle open of a deleted file
12-
.fuse_hidden*
13-
14-
# KDE directory preferences
15-
.directory
16-
17-
# Linux trash folder which might appear on any partition or disk
18-
.Trash-*
19-
20-
# .nfs files are created when an open file is removed but is still being accessed
21-
.nfs*
22-
23-
### VisualStudioCode ###
24-
.vscode/*
25-
!.vscode/settings.json
26-
!.vscode/tasks.json
27-
!.vscode/launch.json
28-
!.vscode/extensions.json
29-
30-
### VisualStudioCode Patch ###
31-
# Ignore all local history of files
32-
.history
33-
34-
### Windows ###
35-
# Windows thumbnail cache files
36-
Thumbs.db
37-
ehthumbs.db
38-
ehthumbs_vista.db
39-
40-
# Dump file
41-
*.stackdump
42-
43-
# Folder config file
44-
[Dd]esktop.ini
45-
46-
# Recycle Bin used on file shares
47-
$RECYCLE.BIN/
48-
49-
# Windows Installer files
50-
*.cab
51-
*.msi
52-
*.msix
53-
*.msm
54-
*.msp
55-
56-
# Windows shortcuts
57-
*.lnk
58-
59-
# End of https://www.gitignore.io/api/linux,ansible,windows,visualstudiocode
60-
61-
# Created by https://www.gitignore.io/api/packer,vagrant,terraform
62-
# Edit at https://www.gitignore.io/?templates=packer,vagrant,terraform
63-
64-
### Packer ###
65-
# Cache objects
66-
packer_cache/
67-
68-
# For built boxes
69-
*.box
70-
71-
### Terraform ###
72-
# Local .terraform directories
73-
**/.terraform/*
74-
75-
# .tfstate files
76-
*.tfstate
77-
*.tfstate.*
78-
79-
# Crash log files
80-
crash.log
81-
82-
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
83-
# .tfvars files are managed as part of configuration and so should be included in
84-
# version control.
85-
#
86-
# example.tfvars
87-
88-
# Ignore override files as they are usually used to override resources locally and so
89-
# are not checked in
90-
override.tf
91-
override.tf.json
92-
*_override.tf
93-
*_override.tf.json
94-
95-
# Include override files you do wish to add to version control using negated pattern
96-
# !example_override.tf
97-
98-
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
99-
# example: *tfplan*
100-
101-
### Vagrant ###
102-
# General
103-
.vagrant/
104-
105-
# Log files (if you are creating logs in debug mode, uncomment this)
106-
*.logs
107-
108-
### Vagrant Patch ###
109-
110-
# End of https://www.gitignore.io/api/packer,vagrant,terraform
111-
*.log
1+
# Created by https://www.gitignore.io/api/linux,ansible,windows,visualstudiocode
2+
# Edit at https://www.gitignore.io/?templates=linux,ansible,windows,visualstudiocode
3+
4+
### Ansible ###
5+
*.retry
6+
hosts.yml
7+
8+
### Linux ###
9+
*~
10+
11+
# temporary files which can be created if a process still has a handle open of a deleted file
12+
.fuse_hidden*
13+
14+
# KDE directory preferences
15+
.directory
16+
17+
# Linux trash folder which might appear on any partition or disk
18+
.Trash-*
19+
20+
# .nfs files are created when an open file is removed but is still being accessed
21+
.nfs*
22+
23+
### VisualStudioCode ###
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
30+
### VisualStudioCode Patch ###
31+
# Ignore all local history of files
32+
.history
33+
34+
### Windows ###
35+
# Windows thumbnail cache files
36+
Thumbs.db
37+
ehthumbs.db
38+
ehthumbs_vista.db
39+
40+
# Dump file
41+
*.stackdump
42+
43+
# Folder config file
44+
[Dd]esktop.ini
45+
46+
# Recycle Bin used on file shares
47+
$RECYCLE.BIN/
48+
49+
# Windows Installer files
50+
*.cab
51+
*.msi
52+
*.msix
53+
*.msm
54+
*.msp
55+
56+
# Windows shortcuts
57+
*.lnk
58+
59+
# End of https://www.gitignore.io/api/linux,ansible,windows,visualstudiocode
60+
61+
# Created by https://www.gitignore.io/api/packer,vagrant,terraform
62+
# Edit at https://www.gitignore.io/?templates=packer,vagrant,terraform
63+
64+
### Packer ###
65+
# Cache objects
66+
packer_cache/
67+
68+
# For built boxes
69+
*.box
70+
71+
### Terraform ###
72+
# Local .terraform directories
73+
**/.terraform/*
74+
75+
# .tfstate files
76+
*.tfstate
77+
*.tfstate.*
78+
79+
# Crash log files
80+
crash.log
81+
82+
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
83+
# .tfvars files are managed as part of configuration and so should be included in
84+
# version control.
85+
#
86+
# example.tfvars
87+
88+
# Ignore override files as they are usually used to override resources locally and so
89+
# are not checked in
90+
override.tf
91+
override.tf.json
92+
*_override.tf
93+
*_override.tf.json
94+
95+
# Include override files you do wish to add to version control using negated pattern
96+
# !example_override.tf
97+
98+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
99+
# example: *tfplan*
100+
101+
### Vagrant ###
102+
# General
103+
.vagrant/
104+
105+
# Log files (if you are creating logs in debug mode, uncomment this)
106+
*.logs
107+
108+
### Vagrant Patch ###
109+
110+
# End of https://www.gitignore.io/api/packer,vagrant,terraform
111+
*.log

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "/usr/bin/python3"
3+
}

Ansible/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Ansible Playbooks
2-
All Ansible Playbooks related to setting up our basic server setup will go here
3-
4-
## Requirements:
5-
1. Create host.yml file
6-
⋅⋅⋅Add your hosts and host groups to this file
7-
2. TBD
1+
# Ansible Playbooks
2+
All Ansible Playbooks related to setting up our basic server setup will go here
3+
4+
## Requirements:
5+
1. Create host.yml file
6+
⋅⋅⋅Add your hosts and host groups to this file
7+
2. TBD

0 commit comments

Comments
 (0)