Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!--- Provide a general summary of the issue in the Title above -->

## Expected Behavior

<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->

## Current Behavior

<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->

## Possible Solution

<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->

## Steps to Reproduce (for bugs)

<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->

1.
2.
3.
4.

## Context

<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

## Your Environment (for bugs)

<!--- Include as many relevant details about the environment you experienced the bug in -->

- Version used:
- Environment name and version (e.g. Chrome 39, node.js 5.4):
- Operating System and version (desktop or mobile):
43 changes: 43 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## Description

<!-- Describe in a couple of sentences what this PR adds -->

## Pull request type
<!-- Please make sure you add the type to the name of the PR eg: feature/M06-as-a-user-i-love-pr -->
- [ ] #M01 (Miscellaneous User Story #01)
- [ ] #P02 (Participant User Story #02)
- [ ] #S03 (Staff User Story #03)
- [ ] #A04 (Admin User Story #04)
- [ ] Bugfix
- [ ] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring
- [ ] Build related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

## Related Issue

<!-- Link to the related Issue -->

## Configuration instructions

<!-- List any non-trivial configuration instructions (if any) -->

## Testing

<!-- Explain what kind of testing was performed and list any testing instructions (if needed) -->

## Screenshots

<!-- Add any screenshots (if needed) -->

## Additional Information

<!-- Any other information that is needed -->

## Does this introduce a breaking change

- [ ] Yes
- [] No
<!-- Please fill in an xinside the [] for the correct one -->
14 changes: 6 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# static/
# media/
__pycache__/
.venv/
.vscode/
.env
env.py
.vscode
*.py[cod]
__pycache__/
*.sqlite3
# static/
# media/
settings.json
.gitpod.yml
.venv/
setup.bat
Pipfile
Pipfile.lock
setup.*
31 changes: 31 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pylint = "*"
pylint-django = "*"
pep8 = "*"
autopep8 = "*"

[packages]
asgiref = "==3.2.10"
certifi = "==2020.6.20"
chardet = "==3.0.4"
defusedxml = "==0.6.0"
django-allauth = "==0.42.0"
django-crispy-forms = "==1.9.2"
idna = "==2.10"
oauthlib = "==3.1.0"
python-dotenv = "==0.14.0"
python3-openid = "==3.2.0"
pytz = "==2020.1"
requests = "==2.24.0"
requests-oauthlib = "==1.3.0"
sqlparse = "==0.3.1"
urllib3 = "==1.25.10"
Django = "==3.1.1"

[requires]
python_version = "3.8"
Loading