Skip to content

Commit 71dccff

Browse files
committed
demo refactor
1 parent d45f793 commit 71dccff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+326
-446
lines changed

β€Ž.coveragerc

-27
This file was deleted.

β€Ž.gitignore

+1-5
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ pip-log.txt
3434
pip-delete-this-directory.txt
3535

3636
# Unit test / coverage reports
37-
htmlcov/
38-
.tox/
39-
.coverage
40-
.coverage.*
4137
.cache
4238
nosetests.xml
4339
coverage.xml
@@ -55,7 +51,7 @@ docs/_build/
5551

5652
# PyBuilder
5753
target/
58-
db.sqlite3
54+
demo.sqlite3
5955
.python-version
6056
venv
6157
.pylintrc

β€ŽDockerfile

+12-11
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,25 @@ RUN apk --update add build-base bash jpeg-dev zlib-dev python3-dev
33

44
ENV PYTHONUNBUFFERED 1
55
ENV PYTHONDONTWRITEBYTECODE 1
6-
ENV DEMO_DB_NAME /db.sqlite3
7-
RUN pip install django-extensions
6+
ENV DJANGO_SETTINGS_MODULE demo.settings
7+
ENV PYTHONPATH /app
8+
ENV DEMO_DB_NAME /demo.sqlite3
9+
RUN pip install django-extensions pillow freezegun
810

9-
RUN mkdir -p /app
1011
WORKDIR /app
1112

12-
COPY setup.py README.rst /app
13+
COPY pyproject.toml /app
1314
COPY picker /app/picker
1415
COPY demo /app/demo
1516
COPY tests /app/tests
1617

1718
RUN pip install -e /app
18-
RUN pip install -e /app/demo/
19-
RUN demo migrate --no-input && \
20-
demo loaddata demo/demo/fixtures/users.json && \
21-
demo loaddata demo/demo/fixtures/picker.json && \
22-
demo import_picks tests/nfl2024.json
19+
RUN django-admin migrate --no-input && \
20+
django-admin loaddata /app/demo/fixtures/picker.json && \
21+
django-admin import_picks /app/tests/nfl2024.json && \
22+
django-admin import_picks /app/tests/quidditch.json && \
23+
django-admin import_picks /app/tests/eng1.json
2324

24-
EXPOSE 8080
25+
EXPOSE 8008
2526
RUN echo Load at http://localhost:8008
26-
CMD ["demo", "runserver", "0:8008"]
27+
CMD ["django-admin", "runserver", "0:8008"]

β€ŽJustfile

+49-35
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ DIST := DEV / "dist"
66
VENV := DEV / "venv"
77
BIN := VENV / "bin"
88
PIP := BIN / "python -m pip --require-venv"
9+
DJENV := "DJANGO_SETTINGS_MODULE=demo.settings PYTHONPATH=."
10+
DJ := DJENV + " " + BIN / "django-admin"
911

1012

1113
# Display recipe listing
@@ -19,29 +21,7 @@ info:
1921
@echo venv = {{VENV}}
2022
@echo bin = {{BIN}}
2123
@echo pip = {{PIP}}
22-
23-
# Update all dev dependencies
24-
update:
25-
@echo Installing picker ...
26-
{{PIP}} install -U -e .
27-
28-
@echo Installing demo ...
29-
{{PIP}} install -U -e demo/
30-
31-
@echo Installing dev dependencies ...
32-
{{PIP}} install -U \
33-
build \
34-
pytest \
35-
pytest-sugar \
36-
pytest-clarity \
37-
pytest-django \
38-
freezegun \
39-
coverage \
40-
tox \
41-
ipython \
42-
flake8 \
43-
black \
44-
twine
24+
@echo dj = {{DJ}}
4525

4626
# Create a virtual environment if needed
4727
venv:
@@ -51,28 +31,43 @@ venv:
5131
python3 -m venv {{VENV}}
5232
fi
5333

34+
# Update all dev dependencies
35+
update: venv
36+
@echo Installing picker ...
37+
{{PIP}} install -U -e .
38+
{{PIP}} install -U -e ".[test,dev]"
39+
40+
# Setup the demo project for non-docker development
41+
demo-init:
42+
{{DJ}} migrate --no-input
43+
{{DJ}} loaddata demo/fixtures/picker.json
44+
{{DJ}} import_picks tests/nfl2024.json tests/quidditch.json tests/eng1.json
45+
46+
# Run the demo project in non-docker mode
47+
demo *args='':
48+
{{DJ}} "$@"
49+
5450
# Create virtual environment and install / update all dev dependencies
55-
init: info venv update
51+
init: info update demo-init
5652
@echo Initialization complete
5753

5854
# Run test suite
5955
test *args='':
6056
{{BIN}}/pytest -vv -s --diff-width=60 "$@"
6157

62-
# Run test suite
58+
# RE-run test suite with just previous failures
6359
retest:
6460
{{BIN}}/pytest -vv -s --diff-width=60 --lf
6561

6662
# Run all tox tests
67-
test-all:
68-
{{BIN}}/tox
63+
tox *args='':
64+
{{BIN}}/tox "$@"
6965

7066
# Run coverage report from test suite
7167
cov:
7268
-{{BIN}}/coverage run -m pytest -vv -s
7369
{{BIN}}/coverage report
7470
{{BIN}}/coverage html
75-
echo HTML coverage report: {{DEV}}/coverage/index.html
7671

7772
# Remove the virtual env dir
7873
rmvenv:
@@ -86,28 +81,33 @@ rmvenv:
8681

8782
# Remove all *.pyc files and __pycache__ dirs
8883
clean:
84+
find . -name .DS_Store -delete
8985
find . -type f -name "*.pyc" -delete
9086
find . -type d -name "__pycache__" -delete
9187

9288
# Remove the dev directory, where all generated artifacts are stored
9389
clean-dev:
9490
rm -rf {{DEV}}
91+
rm -f demo/demo.sqlite3
9592

9693
# Remove all build and dist artifacts
9794
clean-build:
98-
rm -rf ./picker.egg-info ./demo/demo.egg-info {{DIST}}/*
95+
rm -rf {{DIST}}/*
96+
97+
clean-eggs:
98+
rm -rf ./picker.egg-info
9999

100100
# Clean all build, test, and compile artifacts and remove venv
101101
[confirm('Remove all build, test, coverage, and compiled artifacts and delete venv?')]
102-
purge: clean clean-dev rmvenv clean-build
102+
purge: clean clean-dev rmvenv clean-build clean-eggs
103103
echo All artifacts purged
104104

105105
# Build sdist and wheel files for distribution
106106
build:
107107
{{BIN}}/python -m build --outdir {{DIST}}
108108

109109
# Build distros and upload to PyPI
110-
upload: clean-build build
110+
upload:
111111
twine upload {{DIST}}/*
112112

113113
# Run linter and code formatter tools
@@ -119,14 +119,28 @@ lint:
119119
-{{BIN}}/black --check --diff -l 100 picker tests demo
120120

121121
# Build the demo Docker container
122-
dbuild *args='':
122+
docker-build *args='':
123123
docker compose build "$@"
124124

125125
# Run the Django server in a Docker container
126-
drun *args='':
127-
@echo Browse to http://127.0.0.1:8080 when Docker is up
126+
docker-run *args='':
127+
@echo Browse to http://127.0.0.1:8008 when Docker is up
128128
docker compose up "$@"
129129

130130
# Execute a command in a running Docker container
131-
dexec *args='':
131+
docker-exec *args='':
132132
docker compose exec app "$@"
133+
134+
# Execute a pip command in the local non-docker venv
135+
pip *args='':
136+
{{PIP}} "$@"
137+
138+
version arg="":
139+
#!/usr/bin/env bash
140+
if [ -z "${arg}" ]; then
141+
grep -E "__version__ = \"[^\"]+\"" picker/__init__.py
142+
else
143+
sed -E "s/:Version: [0-9]+(\.[0-9]+)+/:Version: ${arg}/" README.rst
144+
sed -E "s/__version__ = \"[^\"]+\"/__version__ = \"${arg}\"/" picker/__init__.py
145+
fi
146+

β€ŽLICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 David A Krauth
3+
Copyright (c) 2024 David A Krauth
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

β€ŽREADME.rst

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
Picker
2-
======
1+
django-picker
2+
=============
33

44
.. image:: https://github.com/dakrauth/picker/workflows/Test/badge.svg
55
:target: https://github.com/dakrauth/picker/actions
66

7-
A Django-based sports picker app for various leagues.
7+
A Django-based sports picker app for various leagues (NFL, English Premier, etc).
88

99
Templates
1010
---------
@@ -44,8 +44,8 @@ Build and execute the demo in a Docker container:
4444

4545
.. code-block:: bash
4646
47-
$ just dbuild
48-
$ just drun
47+
$ just docker-build
48+
$ just docker-run
4949
5050
To test:
5151

@@ -64,8 +64,8 @@ To test:
6464
Meta
6565
----
6666

67-
Requires Python >= 3.10, Django >= 4.2
67+
:Version: 2.3.0
68+
:Requirements: Python >= 3.10, Django >= 4.2
69+
:License: MIT (see ``LICENSE`` file for more information)
70+
:Source: https://github.com/dakrauth/django-picker
6871

69-
Distributed under the MIT License, see ``LICENSE`` file for more information.
70-
71-
https://github.com/dakrauth/picker

β€Ždemo/MANIFEST.in

-1
This file was deleted.
File renamed without changes.

β€Ždemo/demo/__main__.py

-22
This file was deleted.

β€Ždemo/demo/context_processors.py

-6
This file was deleted.

β€Ždemo/demo/middleware.py

-29
This file was deleted.

β€Ždemo/demo/static/bootstrap-theme.min.css

-5
This file was deleted.

β€Ždemo/demo/static/bootstrap.min.css

-5
This file was deleted.

β€Ždemo/demo/static/demo.css

-26
This file was deleted.

β€Ždemo/demo/templates/picker/base.html

-20
This file was deleted.

0 commit comments

Comments
Β (0)