Skip to content

Commit

Permalink
Swap out pipenv for dotenv
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchrisadams committed May 3, 2024
1 parent dd332eb commit 0cf0a8b
Show file tree
Hide file tree
Showing 18 changed files with 101 additions and 98 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install pipenv and wheel for managing dependencies
- name: Install tooling for managing dependencies
run: |
python -m pip install --upgrade uv wheel
- name: Set up a cache-key for installations of dependencies, in .venv
id: cache-pipenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
# - name: Set up a cache-key for installations of dependencies, in .venv
# id: cache-venv
# uses: actions/cache@v4
# with:
# path: ./.venv
# key: ${{ runner.os }}-venv-${{ hashFiles('**/Pipfile.lock') }}

- name: Install dependencies
# skipping this check to see if we have a collision between cache keys
Expand Down
11 changes: 6 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ tasks:
init: |
cp ./.env.gitpod ./.env
mysqladmin create greencheck
python -m pipenv install --dev
python -m pipenv run python ./manage.py migrate
python -m pipenv run python ./manage.py tailwind install
python -m pipenv run python ./manage.py tailwind build
source .venv/bin/activate
dotenv run -- python -m pip install -r requirements/requirements.linux.generated.txt
dotenv run -- ./manage.py migrate
dotenv run -- ./manage.py tailwind install
dotenv run -- ./manage.py tailwind build
cd ./apps/theme/static_src/
npx rollup --config
cd ../../../
python -m pipenv run python ./manage.py collectstatic --no-input
dotenv run -- ./manage.py collectstatic --no-input
command: ls

- name: rabbitmq
Expand Down
4 changes: 2 additions & 2 deletions ansible/_add_system_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
when: install_system_reqs is true
tags: [python]

- name: Install pipenv libraries
ansible.builtin.command: "python -m pip install pipenv wheel"
- name: Install libraries for handling dependencies
ansible.builtin.command: "python3.11 -m pip install uv wheel"
when: install_system_reqs is true
10 changes: 8 additions & 2 deletions ansible/_assemble_deploy_assets.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
---
- name: Build minified tailwind css file
ansible.builtin.command: "python -m pipenv run ./manage.py tailwind build"
ansible.builtin.shell: |
source .venv/bin/activate
dotenv run -- ./manage.py tailwind build
args:
chdir: "{{ project_root }}/current"
executable: "/usr/bin/bash"
changed_when: false

- name: Build javascript bundle with rollup, using the local config file
Expand All @@ -12,7 +15,10 @@
changed_when: false

- name: Collect static files for django
ansible.builtin.command: "python -m pipenv run ./manage.py collectstatic --no-input"
ansible.builtin.shell: |
source .venv/bin/activate
dotenv run -- ./manage.py collectstatic --no-input
args:
chdir: "{{ project_root }}/current"
executable: "/usr/bin/bash"
changed_when: false
34 changes: 15 additions & 19 deletions ansible/_install_deploy_dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,32 @@
---
- name: Set up venv for pipenv to use. this is needed for the step below to work
# without creating the venv in .venv, pipenv can't find the version
# of python or pip to use, and errors out
ansible.builtin.command: "python -m pipenv --python /usr/bin/python3.11"
- name: Set up a virtual environment for this project
ansible.builtin.command: "python3.11 -m venv .venv"
args:
chdir: "{{ project_root }}/current"
changed_when: false

- name: Install latest version of pipenv
ansible.builtin.pip:
name: pipenv
virtualenv: "{{ project_root }}/current/.venv"

- name: Install python dependencies with pipenv
ansible.builtin.command: "python -m pipenv sync" # noqa no-changed-when
- name: Install python dependencies with uv
ansible.builtin.shell: |
source .venv/bin/activate
python3.11 -m pip install -r requirements/requirements.linux.generated.txt
args:
chdir: "{{ project_root }}/current"
environment:
# make sure we install in the project root.
# this way when we clear up old releases we also
# remove the deps.
# using env vars triggers the 'schema[playbook]', hence the noqa
PIPENV_VENV_IN_PROJECT: "1" # noqa schema[playbook]
executable: "/usr/bin/bash"

- name: Update node deps for building tailwind
ansible.builtin.command: "python -m pipenv run ./manage.py tailwind update"
ansible.builtin.shell: |
source .venv/bin/activate
dotenv run -- python3.11 ./manage.py tailwind update
args:
chdir: "{{ project_root }}/current"
executable: "/usr/bin/bash"
when: update_front_end_deps is true

- name: Install node deps for building tailwind
ansible.builtin.command: "python -m pipenv run ./manage.py tailwind install"
ansible.builtin.shell: |
source .venv/bin/activate
dotenv run -- python3.11 ./manage.py tailwind install
args:
executable: "/usr/bin/bash"
chdir: "{{ project_root }}/current"
changed_when: false
12 changes: 0 additions & 12 deletions ansible/cloud-ip-range-import.yml

This file was deleted.

5 changes: 4 additions & 1 deletion ansible/domain-dataset-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

tasks:
- name: run management task to create domains snapshot
shell: "pipenv run ./manage.py dump_green_domains --upload"
shell: |
source .venv/bin/acticate
dotenv run -- ./manage.py dump_green_domains --upload
args:
chdir: "{{ project_root }}/current"
executable: "/usr/bin/bash"
23 changes: 13 additions & 10 deletions ansible/migrate.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
---
- name: Deploy the TGWF django admin
hosts:
- all
remote_user: "deploy"
become: no
- name: Deploy the TGWF django admin
hosts:
- all
remote_user: "deploy"
become: no

tasks:
- name: run migration
shell: "pipenv run ./manage.py migrate"
args:
chdir: "{{ project_root }}/current"
tasks:
- name: run migration
shell: |
source .venv/bin/activate
dotenv run -- ./manage.py migrate
args:
chdir: "{{ project_root }}/current"
executable: "/usr/bin/bash"
2 changes: 0 additions & 2 deletions ansible/templates/dotenv.j2
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,3 @@ API_URL = "{{ lookup('env', 'API_URL') }}"


TRELLO_REGISTRATION_EMAIL_TO_BOARD_ADDRESS = "{{ lookup('env', 'TRELLO_REGISTRATION_EMAIL_TO_BOARD_ADDRESS') }}"

PIPENV_VENV_IN_PROJECT=True
3 changes: 2 additions & 1 deletion ansible/templates/export_green_domains.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ set -euo pipefail
cd {{ project_root }}/current/

# run the domains export and upload to object storage
python -m pipenv run ./manage.py dump_green_domains --upload
source .venv/bin/activate
dotenv run -- python ./manage.py dump_green_domains --upload
7 changes: 4 additions & 3 deletions ansible/templates/import_ips_for_large_providers.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ set -euo pipefail
cd {{ project_root }}/current/

# run our ip imports
python -m pipenv run ./manage.py update_networks_in_db_amazon
python -m pipenv run ./manage.py update_networks_in_db_google
python -m pipenv run ./manage.py update_networks_in_db_microsoft
source .venv/bin/activate
dotenv run -- ./manage.py update_networks_in_db_amazon
dotenv run -- ./manage.py update_networks_in_db_google
dotenv run -- ./manage.py update_networks_in_db_microsoft
9 changes: 7 additions & 2 deletions ansible/templates/run_gunicorn.sh.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# supervisor can only control processes it started itself.
# So we need to use exec to replace the parent shell script process
# that starts pipenv
exec dotenv run -- gunicorn greenweb.wsgi -b {{ internal_ip }}:{{ gunicorn_port }} -t 300 -c gunicorn.conf.py --statsd-host=10.0.0.2:9125 --statsd-prefix=member.app
# that calls gunicorn
source .venv/bin/activate
dotenv run -- gunicorn greenweb.wsgi \
--bind {{ internal_ip }}:{{ gunicorn_port }} \
--timeout 300 \
--config gunicorn.conf.py \
--statsd-host=10.0.0.2:9125 --statsd-prefix=member.app
8 changes: 6 additions & 2 deletions ansible/templates/run_worker.sh.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# supervisor can only control processes it started itself.
# So we need to use exec to replace the parent shell script process
# that starts pipenv
exec python -m pipenv run ./manage.py rundramatiq --threads {{ dramatiq_threads }} --processes {{ dramatiq_processes }} --queues default
# that calls manage.py
source .venv/bin/activate
exec dotenv run -- ./manage.py rundramatiq \
--threads {{ dramatiq_threads }} \
--processes {{ dramatiq_processes }} \
--queues default
2 changes: 1 addition & 1 deletion docs/how-to.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Important: make sure to be outside of an enviroment (deactivate).

#### Run all test until one fails
```
pipenv run pytest -x
dotenv run -- pytest -x
```

## Set up Gitpod environment
Expand Down
20 changes: 14 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,27 @@ sudo apt install python3 python3-dev build-essential libmariadb3 libmariadb-dev

__Note__ In the context of development, it is recommended to manage Python versions using [`pyenv`](https://github.com/pyenv/pyenv) instead of relying on the version shipped in the operating system.

__Note__ Currently Python version 3.8.5 is used on production.
__Note__ Currently Python version 3.11.9 is used on production.

### Setup
Before following the following list, make sure you are in the root directory (workspace/admin-portal).

1. Make sure you have the right Python version installed: `python --version`
2. Install a package named `pipenv` with `pip`: `python -m pip install pipenv`.
3. Once installed, use this command to install all project packages: `pipenv install --dev`. The project packages are defined in `Pipfile`, and the `--dev` option installs both: develop and default packages.
4. You can activate the virtual environment created for you by `pipenv` by running the command: `pipenv shell`.
5. As a final step, make sure to copy the content of `.env.test` to `.env` and add the necessary credentials.<br>
2. Create a virtual environment: `python -m venv .venv`
3. Activate the virtual environment created for you: `source .venv/bin/activate`
4. Install a package named `uv` with `pip`: `python -m pip install uv`.
5. Once installed, use this command to install all project packages: `uv pip install -r `. The project packages are defined in `requirements.dev.generated.txt`.
5. As a final step, make sure to copy the content of `.env.test` to `.env` and add the necessary credentials.

__Note__ that this project relies on object storage. In production this is needed to store static files, but in development it is not required.

By default `pipenv` loads the content of the `.env` file.<br>
By default `dotenv run` loads the content of the `.env` files before the next command, so

```
dotenv run -- my-command
```

Will run my-command with all the environment variables in .env set.

## Working with email

Expand Down
15 changes: 8 additions & 7 deletions docs/recurring-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ While the Green Web Foundation offers a self-service way to maintain up to date
These can be run on the command line using the following commands

```
pipnev run ./manage.py update_networks_in_db_amazon
pipnev run ./manage.py update_networks_in_db_google
pipnev run ./manage.py update_networks_in_db_microsoft
source .venv/bin/activate
dotenv run -- ./manage.py update_networks_in_db_amazon
dotenv run -- ./manage.py update_networks_in_db_google
dotenv run -- ./manage.py update_networks_in_db_microsoft
```

Look in the `import_ips_for_large_providers.sh.j2` file to see the specific shell script run each week, and the `setup_cronjobs.yml` ansible playbook to see the specific tasks used to set up a a server to run these on a recurring schedule.
Expand Down Expand Up @@ -52,13 +53,13 @@ We use the yaml folded scalar literal to make the formatting easier to read, alo
If you wanted to check that a cronjob is set up on the necessary server, you would run the following ansible command, passing in the correct inventory file to tell ansible which set of servers to connect to, and passing in `--check`` to see what changes might take effect:

```
pipenv run ansible-playbook -i ansible/inventories/prod.yml ansible/setup_cronjobs.yml --check
dotenv run -- ansible-playbook -i ansible/inventories/prod.yml ansible/setup_cronjobs.yml --check
```

To run the actual command, and update the cronjobs, you would run the same command, without the `--check` flag.

```
pipenv run ansible-playbook -i ansible/inventories/prod.yml ansible/setup_cronjobs.yml
dotenv run -- ansible-playbook -i ansible/inventories/prod.yml ansible/setup_cronjobs.yml
```
### Daily Green Domain Exports
Expand All @@ -70,14 +71,14 @@ These are intended for cases when hitting an external API is either impractical,
This export is normally run with the following django management command.
```
pipenv run ./manage.py dump_green_domains
dotenv run -- ./manage.py dump_green_domains
```
To upload the database snapshot to object storage, pass long the `--upload` flag.
```
pipenv run ./manage.py dump_green_domains --upload
dotenv run -- ./manage.py dump_green_domains --upload
```
This is currently set to run every day, but historically, this job not run consistently every single day.
Expand Down
18 changes: 4 additions & 14 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ venv:

## Installing
release:
PIPENV_DOTENV_LOCATION=.env.prod pipenv run sentry-cli releases new -p admin-portal $(shell sentry-cli releases propose-version)
PIPENV_DOTENV_LOCATION=.env.prod pipenv run sentry-cli releases set-commits --auto $(shell sentry-cli releases propose-version)
PIPENV_DOTENV_LOCATION=.env.prod pipenv run ansible-playbook ansible/deploy.yml -i ansible/inventories/prod.yml
PIPENV_DOTENV_LOCATION=.env.prod pipenv run sentry-cli releases finalize $(shell sentry-cli releases propose-version)
dotenv -f env.prod run -- sentry-cli releases new -p admin-portal $(shell sentry-cli releases propose-version)
dotenv -f env.prod run -- sentry-cli releases set-commits --auto $(shell sentry-cli releases propose-version)
dotenv -f env.prod run -- ansible-playbook ansible/deploy.yml -i ansible/inventories/prod.yml
dotenv -f env.prod run -- sentry-cli releases finalize $(shell sentry-cli releases propose-version)

dev.createsuperuser:
python ./manage.py createsuperuser --username admin --email admin@admin.commits --noinput
Expand Down Expand Up @@ -52,16 +52,6 @@ test:
test.only:
pytest -s --create-db -m only -v --ds=greenweb.settings.testing

flake:
flake8 ./greenweb ./apps ./*.py --count --statistics
black:
black ./greenweb ./apps ./*.py $(ARGS)

black.check:
@ARGS="--check --color --diff" make black

ci: | black.check flake

# Build the documentation using Sphinx
docs:
sphinx-build ./docs _build/
Expand Down
2 changes: 0 additions & 2 deletions run-tests.sh

This file was deleted.

0 comments on commit 0cf0a8b

Please sign in to comment.