-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fixtures with example games and game categories
- Loading branch information
Showing
16 changed files
with
323 additions
and
383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,14 +16,14 @@ jobs: | |
python-version: [3.7, 3.8, 3.9] | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
|
@@ -34,15 +34,14 @@ jobs: | |
# python manage.py test | ||
|
||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: # optional, default is artifact | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: | ||
# The desired behavior if no files are found using the provided path | ||
error: "" | ||
|
||
if-no-files-found: # optional, default is warn | ||
|
||
retention-days: # optiona | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
# name: # optional, default is artifact | ||
# A file, directory or wildcard pattern that describes what to upload | ||
# path: | ||
# The desired behavior if no files are found using the provided path | ||
error: "" | ||
|
||
# if-no-files-found: # optional, default is warn | ||
# retention-days: # optiona |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ django-allauth = "*" | |
[dev-packages] | ||
|
||
[requires] | ||
python_version = "3.8" | ||
python_version = "3.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[ | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 1, | ||
"fields": { | ||
"title": "MMORPGs", | ||
"slug": "mmorpgs", | ||
"description": "Massively multiplayer online role-playing games where players can explore vast worlds, complete quests, and connect with a large community of gamers." | ||
} | ||
}, | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 2, | ||
"fields": { | ||
"title": "Action and Shooters", | ||
"slug": "action-shooters", | ||
"description": "Fast-paced action and shooter games that offer intense gameplay, strategic team play, and competitive multiplayer experiences." | ||
} | ||
}, | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 3, | ||
"fields": { | ||
"title": "Survival and Sandbox", | ||
"slug": "survival-sandbox", | ||
"description": "Survival and sandbox games that challenge players to explore, build, and survive in open-world environments, often with multiplayer support." | ||
} | ||
}, | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 4, | ||
"fields": { | ||
"title": "Strategy and MOBA", | ||
"slug": "strategy-moba", | ||
"description": "Strategic and multiplayer online battle arena games that require tactical thinking, team coordination, and in-depth game knowledge." | ||
} | ||
}, | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 5, | ||
"fields": { | ||
"title": "Adventure and Social", | ||
"slug": "adventure-social", | ||
"description": "Adventure and social games that focus on storytelling, exploration, and building connections with other players." | ||
} | ||
}, | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 6, | ||
"fields": { | ||
"title": "Sports and Racing", | ||
"slug": "sports-racing", | ||
"description": "Competitive sports and racing games that simulate real-world sports, offering both single-player and multiplayer experiences." | ||
} | ||
}, | ||
{ | ||
"model": "app.gamecategory", | ||
"pk": 7, | ||
"fields": { | ||
"title": "Card and Board Games", | ||
"slug": "card-board-games", | ||
"description": "Digital card and board games that recreate the magic of tabletop gaming in an online environment." | ||
} | ||
} | ||
] |
Oops, something went wrong.