-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/npm_and_yarn/dependencies-3866a005bb
- Loading branch information
Showing
9 changed files
with
44 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
export HOSTNAME="${HOSTNAME:-${HOST:-$(hostname)}}" | ||
# 'vsa' is acronym for 'visual studio ansible' | ||
# we use HOME location below to avoid polluting the project directory with, | ||
# temporary data and to allow us to mount the codebase on multiple machines | ||
# for build and testing purposes. | ||
export VIRTUAL_ENV="${HOME}/.local/share/virtualenvs/vsa" | ||
|
||
# Command such `yarn webpack-dev` might fail with | ||
# Reached heap limit Allocation failed - JavaScript heap out of memory | ||
# https://nodejs.org/api/cli.html#--max-old-space-sizesize-in-megabytes | ||
# default 16 MiB for 64-bit systems and 8 MiB for 32-bit systems | ||
export NODE_OPTIONS="--max-old-space-size=8192" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,8 @@ | ||
#!/bin/bash | ||
# Helps direnv 2.32.1+ auto activate virtualenv but we do not require | ||
# developers to use it. | ||
# https://github.com/direnv/direnv/wiki/Python | ||
export HOSTNAME="${HOSTNAME:-${HOST:-$(hostname)}}" | ||
# 'vsa' is acronym for 'visual studio ansible' | ||
# we use HOME location below to avoid polluting the project directory with, | ||
# temporary data and to allow us to mount the codebase on multiple machines | ||
# for build and testing purposes. | ||
export VIRTUAL_ENV="${HOME}/.local/share/virtualenvs/vsa" | ||
# direnv specifics: activate virtualenv (creates it if needed) | ||
# for normal env vars, use .env file instead, we do not make direnv a hard | ||
# build dependency. | ||
|
||
# Command such `yarn webpack-dev` might fail with | ||
# Reached heap limit Allocation failed - JavaScript heap out of memory | ||
# https://nodejs.org/api/cli.html#--max-old-space-sizesize-in-megabytes | ||
# default 16 MiB for 64-bit systems and 8 MiB for 32-bit systems | ||
export NODE_OPTIONS="--max-old-space-size=8192" | ||
|
||
# Activate virtualenv (creates it if needed) | ||
source .env | ||
layout python3 | ||
source_up 2>/dev/null || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
direnv 2.34.0 | ||
direnv 2.35.0 | ||
nodejs 20.18.0 | ||
# asdf install task latest | ||
task 3.37.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters