Skip to content

Commit f075566

Browse files
authored
PR / Issue automation - Better setup script (#85)
1 parent ac29637 commit f075566

9 files changed

Lines changed: 433 additions & 43 deletions

.github/ISSUE_TEMPLATE.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!--- Provide a general summary of the issue in the Title above -->
2+
3+
## Expected Behavior
4+
5+
<!--- If you're describing a bug, tell us what should happen -->
6+
<!--- If you're suggesting a change/improvement, tell us how it should work -->
7+
8+
## Current Behavior
9+
10+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
11+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
12+
13+
## Possible Solution
14+
15+
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
16+
<!--- or ideas how to implement the addition or change -->
17+
18+
## Steps to Reproduce (for bugs)
19+
20+
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
21+
<!--- reproduce this bug. Include code to reproduce, if relevant -->
22+
23+
1.
24+
2.
25+
3.
26+
4.
27+
28+
## Context
29+
30+
<!--- How has this issue affected you? What are you trying to accomplish? -->
31+
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
32+
33+
## Your Environment (for bugs)
34+
35+
<!--- Include as many relevant details about the environment you experienced the bug in -->
36+
37+
- Version used:
38+
- Environment name and version (e.g. Chrome 39, node.js 5.4):
39+
- Operating System and version (desktop or mobile):

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## Description
2+
3+
<!-- Describe in a couple of sentences what this PR adds -->
4+
5+
## Pull request type
6+
<!-- Please make sure you add the type to the name of the PR eg: feature/M06-as-a-user-i-love-pr -->
7+
- [ ] #M01 (Miscellaneous User Story #01)
8+
- [ ] #P02 (Participant User Story #02)
9+
- [ ] #S03 (Staff User Story #03)
10+
- [ ] #A04 (Admin User Story #04)
11+
- [ ] Bugfix
12+
- [ ] Feature
13+
- [ ] Code style update (formatting, renaming)
14+
- [ ] Refactoring
15+
- [ ] Build related changes
16+
- [ ] Documentation content changes
17+
- [ ] Other (please describe):
18+
19+
## Related Issue
20+
21+
<!-- Link to the related Issue -->
22+
23+
## Configuration instructions
24+
25+
<!-- List any non-trivial configuration instructions (if any) -->
26+
27+
## Testing
28+
29+
<!-- Explain what kind of testing was performed and list any testing instructions (if needed) -->
30+
31+
## Screenshots
32+
33+
<!-- Add any screenshots (if needed) -->
34+
35+
## Additional Information
36+
37+
<!-- Any other information that is needed -->
38+
39+
## Does this introduce a breaking change
40+
41+
- [ ] Yes
42+
- [] No
43+
<!-- Please fill in an xinside the [] for the correct one -->

.gitignore

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1+
# static/
2+
# media/
3+
__pycache__/
4+
.venv/
5+
.vscode/
16
.env
27
env.py
3-
.vscode
48
*.py[cod]
5-
__pycache__/
69
*.sqlite3
7-
# static/
8-
# media/
910
settings.json
1011
.gitpod.yml
11-
.venv/
12-
setup.bat
13-
Pipfile
14-
Pipfile.lock
12+
setup.*

Pipfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
pylint = "*"
8+
pylint-django = "*"
9+
pep8 = "*"
10+
autopep8 = "*"
11+
12+
[packages]
13+
asgiref = "==3.2.10"
14+
certifi = "==2020.6.20"
15+
chardet = "==3.0.4"
16+
defusedxml = "==0.6.0"
17+
django-allauth = "==0.42.0"
18+
django-crispy-forms = "==1.9.2"
19+
idna = "==2.10"
20+
oauthlib = "==3.1.0"
21+
python-dotenv = "==0.14.0"
22+
python3-openid = "==3.2.0"
23+
pytz = "==2020.1"
24+
requests = "==2.24.0"
25+
requests-oauthlib = "==1.3.0"
26+
sqlparse = "==0.3.1"
27+
urllib3 = "==1.25.10"
28+
Django = "==3.1.1"
29+
30+
[requires]
31+
python_version = "3.8"

0 commit comments

Comments
 (0)