Skip to content

Commit

Permalink
Fix: Gitpod issues #2792 (#2793)
Browse files Browse the repository at this point in the history
* 🔧 chore(Dockerfile): update NPM_VERSION from 9.7.1 to 9.8.0
The NPM_VERSION variable in the Dockerfile has been updated from 9.7.1 to 9.8.0. This update ensures that the latest version of NPM is used in the Gitpod environment.

* 📦 feat(requirements.txt): add redis package for Python development environment
The redis package is added to the requirements.txt file to include it as a dependency for the Python development environment. This package is necessary for interacting with Redis, a popular in-memory data store, in the application.

* 🔧 chore(requirements.txt): reorder python dependencies in alphabetical order
The python dependencies in the requirements.txt file have been reordered in alphabetical order. This change improves readability and makes it easier to locate specific dependencies, which is particularly useful as the list grows.

* 🔧 chore(.gitpod.yml): update init task to activate virtual environment after bootstrap
The init task in the .gitpod.yml file has been updated to activate the Python virtual environment after the bootstrap process. This change ensures that the correct Python environment is used for subsequent tasks, improving the development setup process in Gitpod.
  • Loading branch information
ThomasSanson authored Jul 12, 2023
1 parent 491796d commit 6b97d3b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .config/gitpod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ FROM docker-installer as npm-installer
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Set a variable for packages version
ARG NPM_VERSION=9.7.1
ARG NPM_VERSION=9.8.0
ARG UNGIT_VERSION=1.5.23
ARG MEGA_LINTER_RUNNER_VERSION=7.0.0
ARG MARKDOWN_TABLE_FORMATTER_VERSION=1.4.0
Expand Down
31 changes: 16 additions & 15 deletions .config/python/dev/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
aiofiles
azure-devops==6.0.0b4
beautifulsoup4
commentjson
fastapi
gitpython
jsonschema
giturlparse
importlib-metadata>=3.10
json-schema-for-humans
jsonpickle
jsonschema
mdx_truly_sane_lists
mkdocs
mkdocs-glightbox==0.3.2
mkdocs-material
multiprocessing_logging
pychalk
pygithub
python-gitlab
azure-devops==6.0.0b4
commentjson
pymdown-extensions==10.0
pytablewriter
pytest-cov
pytest-timeout
pytest-xdist
python-gitlab
python-gitlab
python-multipart
pyyaml
redis
regex
requests
terminaltables
webpreview
yq
importlib-metadata>=3.10
mkdocs-material
pymdown-extensions==10.0
mkdocs-glightbox==0.3.2
mdx_truly_sane_lists
beautifulsoup4
giturlparse
json-schema-for-humans
fastapi
aiofiles
python-multipart
4 changes: 3 additions & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ image:
file: .config/gitpod/Dockerfile

tasks:
- init: make bootstrap
- init: |
make bootstrap
source .venv/bin/activate

0 comments on commit 6b97d3b

Please sign in to comment.