Skip to content

Commit 736b6c7

Browse files
authored
Put the virtualenv into a .venv directory instead of the project root (#151)
Signed-off-by: tdruez <[email protected]>
1 parent 0eb3e6f commit 736b6c7

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
run: make docs
6363

6464
- 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

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ local
3636
/dist/
3737
/.cache/
3838
/.python-version
39-
/enterprise.egg-info/
39+
/.venv/
40+
/.*cache/

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ LABEL org.opencontainers.image.licenses="AGPL-3.0-only"
1515
ENV APP_NAME dejacode
1616
ENV APP_USER app
1717
ENV APP_DIR /opt/$APP_NAME
18-
ENV VIRTUAL_ENV /opt/$APP_NAME/venv
18+
ENV VENV_LOCATION /opt/$APP_NAME/.venv
1919

2020
# Force Python unbuffered stdout and stderr (they are flushed to terminal immediately)
2121
ENV PYTHONUNBUFFERED 1
@@ -51,9 +51,9 @@ USER $APP_USER
5151
RUN mkdir -p /var/$APP_NAME/static/ /var/$APP_NAME/media/
5252

5353
# Create the virtualenv
54-
RUN python -m venv $VIRTUAL_ENV
54+
RUN python -m venv $VENV_LOCATION
5555
# Enable the virtualenv, similar effect as "source activate"
56-
ENV PATH $VIRTUAL_ENV/bin:$PATH
56+
ENV PATH $VENV_LOCATION/bin:$PATH
5757

5858
# Install the dependencies before the codebase COPY for proper Docker layer caching
5959
COPY --chown=$APP_USER:$APP_USER setup.cfg setup.py $APP_DIR/

Makefile

+5-7
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,14 @@
77
#
88

99
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
1213
PIP_ARGS=--find-links=./thirdparty/dist/ --no-index --no-cache-dir
1314
GET_SECRET_KEY=`cat /dev/urandom | head -c 50 | base64`
1415
# Customize with `$ make envfile ENV_FILE=/etc/dejacode/.env`
1516
ENV_FILE=.env
16-
FIXTURES_LOCATION=./dje/fixtures
1717
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
2018
DOCKER_COMPOSE=docker compose -f docker-compose.yml
2119
DOCKER_EXEC=${DOCKER_COMPOSE} exec
2220
DB_NAME=dejacode_db
@@ -28,7 +26,7 @@ TIMESTAMP=$(shell date +"%Y-%m-%d_%H%M")
2826

2927
virtualenv:
3028
@echo "-> Bootstrap the virtualenv with PYTHON_EXE=${PYTHON_EXE}"
31-
${PYTHON_EXE} -m venv .
29+
${PYTHON_EXE} -m venv ${VENV_LOCATION}
3230

3331
conf: virtualenv
3432
@echo "-> Install dependencies"
@@ -72,7 +70,7 @@ check-deploy:
7270

7371
clean:
7472
@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/
7674
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
7775

7876
initdb:

0 commit comments

Comments
 (0)