-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #875 from a-luna/minor-release/v0.7.0
- Loading branch information
Showing
76 changed files
with
4,131 additions
and
3,149 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,25 @@ | ||
**/__pycache__ | ||
**/.classpath | ||
**/.dockerignore | ||
**/.env | ||
**/.git | ||
**/.gitignore | ||
**/.project | ||
**/.settings | ||
**/.toolstarget | ||
**/.vs | ||
**/.vscode | ||
**/*.*proj.user | ||
**/*.dbmdl | ||
**/*.jfm | ||
**/bin | ||
**/charts | ||
**/docker-compose* | ||
**/compose* | ||
**/Dockerfile* | ||
**/node_modules | ||
**/npm-debug.log | ||
**/obj | ||
**/secrets.dev.yaml | ||
**/values.dev.yaml | ||
README.md |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
FROM gitpod/workspace-base:latest | ||
|
||
RUN echo "CI version from base" | ||
|
||
### NodeJS ### | ||
USER gitpod | ||
ENV NODE_VERSION=16.13.0 | ||
ENV TRIGGER_REBUILD=1 | ||
RUN curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | PROFILE=/dev/null bash \ | ||
&& bash -c ". .nvm/nvm.sh \ | ||
&& nvm install $NODE_VERSION \ | ||
&& nvm alias default $NODE_VERSION \ | ||
&& npm install -g typescript yarn node-gyp" \ | ||
&& echo ". ~/.nvm/nvm.sh" >> /home/gitpod/.bashrc.d/50-node | ||
ENV PATH=$PATH:/home/gitpod/.nvm/versions/node/v${NODE_VERSION}/bin | ||
|
||
### Python ### | ||
USER gitpod | ||
RUN sudo install-packages python3-pip | ||
|
||
ENV PATH=$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH | ||
RUN curl -fsSL https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash \ | ||
&& { echo; \ | ||
echo 'eval "$(pyenv init -)"'; \ | ||
echo 'eval "$(pyenv virtualenv-init -)"'; } >> /home/gitpod/.bashrc.d/60-python \ | ||
&& pyenv update \ | ||
&& pyenv install 3.10.1 \ | ||
&& pyenv global 3.10.1 \ | ||
&& python3 -m pip install --no-cache-dir --upgrade pip \ | ||
&& python3 -m pip install --no-cache-dir --upgrade \ | ||
setuptools wheel virtualenv flake8 pydocstyle twine \ | ||
&& sudo rm -rf /tmp/*USER gitpod | ||
ENV PYTHONUSERBASE=/workspace/.pip-modules \ | ||
PIP_USER=yes | ||
ENV PATH=$PYTHONUSERBASE/bin:$PATH | ||
|
||
# SQLite | ||
|
||
RUN sudo apt-get update && sudo apt-get install -y build-essential uuid-dev sqlite3 | ||
|
||
# Add aliases | ||
|
||
RUN echo 'alias python=python3' >> ~/.bashrc && \ | ||
echo 'alias pip=pip3' >> ~/.bashrc && \ | ||
echo 'alias font_fix="python3 $GITPOD_REPO_ROOT/.vscode/font_fix.py"' >> ~/.bashrc | ||
|
||
# Local environment variables | ||
|
||
ENV PORT="8080" | ||
ENV IP="0.0.0.0" | ||
|
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,26 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
tasks: | ||
- before: printf "\n[settings]\napi_key = $WAKA_TIME_API_KEY\n" > ~/.wakatime.cfg | ||
- init: | | ||
pip install -r requirements-dev.txt | ||
pip install -e . | ||
command: vig | ||
vscode: | ||
extensions: | ||
- github.vscode-pull-request-github | ||
- redhat.vscode-yaml | ||
- vivaxy.vscode-conventional-commits | ||
- mhutchie.git-graph | ||
- oderwat.indent-rainbow | ||
- christian-kohler.path-intellisense | ||
- esbenp.prettier-vscode | ||
- vscode-icons-team.vscode-icons | ||
- wakatime.vscode-wakatime | ||
- qcz.text-power-tools | ||
- ms-python.python | ||
- ms-toolsai.jupyter | ||
- ms-azuretools.vscode-docker | ||
- alexcvzz.vscode-sqlite |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.