File tree 4 files changed +11
-12
lines changed
4 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 62
62
run : make docs
63
63
64
64
- name : Run tests
65
- run : bin/python manage.py test --verbosity=2 --noinput --parallel
65
+ run : .venv/ bin/python manage.py test --verbosity=2 --noinput --parallel
Original file line number Diff line number Diff line change 36
36
/dist /
37
37
/.cache /
38
38
/.python-version
39
- /enterprise.egg-info /
39
+ /.venv /
40
+ /. * cache /
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.licenses="AGPL-3.0-only"
15
15
ENV APP_NAME dejacode
16
16
ENV APP_USER app
17
17
ENV APP_DIR /opt/$APP_NAME
18
- ENV VIRTUAL_ENV /opt/$APP_NAME/venv
18
+ ENV VENV_LOCATION /opt/$APP_NAME/. venv
19
19
20
20
# Force Python unbuffered stdout and stderr (they are flushed to terminal immediately)
21
21
ENV PYTHONUNBUFFERED 1
@@ -51,9 +51,9 @@ USER $APP_USER
51
51
RUN mkdir -p /var/$APP_NAME/static/ /var/$APP_NAME/media/
52
52
53
53
# Create the virtualenv
54
- RUN python -m venv $VIRTUAL_ENV
54
+ RUN python -m venv $VENV_LOCATION
55
55
# Enable the virtualenv, similar effect as "source activate"
56
- ENV PATH $VIRTUAL_ENV /bin:$PATH
56
+ ENV PATH $VENV_LOCATION /bin:$PATH
57
57
58
58
# Install the dependencies before the codebase COPY for proper Docker layer caching
59
59
COPY --chown=$APP_USER:$APP_USER setup.cfg setup.py $APP_DIR/
Original file line number Diff line number Diff line change 7
7
#
8
8
9
9
PYTHON_EXE =python3.12
10
- MANAGE =bin/python manage.py
11
- ACTIVATE? =. bin/activate;
10
+ VENV_LOCATION =.venv
11
+ ACTIVATE? =. ${VENV_LOCATION}/bin/activate;
12
+ MANAGE =${VENV_LOCATION}/bin/python manage.py
12
13
PIP_ARGS=--find-links =./thirdparty/dist/ --no-index --no-cache-dir
13
14
GET_SECRET_KEY =` cat /dev/urandom | head -c 50 | base64 `
14
15
# Customize with `$ make envfile ENV_FILE=/etc/dejacode/.env`
15
16
ENV_FILE =.env
16
- FIXTURES_LOCATION =./dje/fixtures
17
17
DOCS_LOCATION =./docs
18
- MODIFIED_PYTHON_FILES =` git ls-files -m " *.py" `
19
- BLACK_ARGS=--exclude ="migrations|data|lib/|lib64|bin|var|dist|.cache" -l 100
20
18
DOCKER_COMPOSE =docker compose -f docker-compose.yml
21
19
DOCKER_EXEC =${DOCKER_COMPOSE} exec
22
20
DB_NAME =dejacode_db
@@ -28,7 +26,7 @@ TIMESTAMP=$(shell date +"%Y-%m-%d_%H%M")
28
26
29
27
virtualenv :
30
28
@echo " -> Bootstrap the virtualenv with PYTHON_EXE=${PYTHON_EXE} "
31
- ${PYTHON_EXE} -m venv .
29
+ ${PYTHON_EXE} -m venv ${VENV_LOCATION}
32
30
33
31
conf : virtualenv
34
32
@echo " -> Install dependencies"
@@ -72,7 +70,7 @@ check-deploy:
72
70
73
71
clean :
74
72
@echo " -> Cleaning the Python env"
75
- rm -rf bin/ lib/ lib64/ include/ build/ dist/ share/ pip-selfcheck.json pyvenv.cfg
73
+ rm -rf .venv/ . * _cache/ * .egg-info/ build/ dist/
76
74
find . -type f -name ' *.py[co]' -delete -o -type d -name __pycache__ -delete
77
75
78
76
initdb :
You can’t perform that action at this time.
0 commit comments