-
Notifications
You must be signed in to change notification settings - Fork 18
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 AFOliveira/fixZicsr
- Loading branch information
Showing
12 changed files
with
90 additions
and
44 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
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 +1 @@ | ||
0.2 | ||
0.3 |
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,6 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname $(realpath $BASH_SOURCE[0])) | ||
source $ROOT/setup | ||
|
||
$BASH "$@" |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
ROOT=$(dirname $(realpath $BASH_SOURCE[0])) | ||
source $ROOT/setup | ||
|
||
$NODE "$@" | ||
$NODE "$@" |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
ROOT=$(dirname $(realpath $BASH_SOURCE[0])) | ||
source $ROOT/setup | ||
|
||
$NPX "$@" | ||
$NPX "$@" |
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,10 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname $(realpath $BASH_SOURCE[0])) | ||
source $ROOT/setup | ||
|
||
if [ ! -v VIRTUAL_ENV ]; then | ||
source ${ROOT}/.home/.venv/bin/activate | ||
fi | ||
|
||
$PIP "$@" |
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,6 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname $(dirname $(realpath $BASH_SOURCE[0]))) | ||
|
||
${ROOT}/bin/bash -c "source ${ROOT}/.home/.venv/bin/activate && pre-commit $@" | ||
|
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,6 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname $(realpath $BASH_SOURCE[0])) | ||
source $ROOT/setup | ||
|
||
$PYTHON "$@" |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
ROOT=$(dirname $(realpath $BASH_SOURCE[0])) | ||
source $ROOT/setup | ||
|
||
$RUBY "$@" | ||
$RUBY "$@" |
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 |
---|---|---|
|
@@ -7,11 +7,14 @@ From: ubuntu:24.04 | |
# package.json $HOME/ | ||
|
||
%post | ||
export DEBIAN_FRONTEND=noninteractive | ||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
apt-get update | ||
|
||
apt-get install -y --no-install-recommends git | ||
apt-get install -y --no-install-recommends gh | ||
|
||
apt-get install -y --no-install-recommends less | ||
|
||
apt-get install -y --no-install-recommends python3 | ||
apt-get install -y --no-install-recommends python3.12-venv python3-pip | ||
|
@@ -34,4 +37,3 @@ From: ubuntu:24.04 | |
|
||
# npm i wavedrom-cli | ||
# npm i i -E @antora/[email protected] @antora/[email protected] @antora/lunr-extension asciidoctor-kroki | ||
|
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,2 @@ | ||
pre_commit==4.0.1 | ||
PyYAML==6.0.2 |