Skip to content

Commit

Permalink
Merge pull request #7 from MinBZK/fix-path
Browse files Browse the repository at this point in the history
Fix path issue
  • Loading branch information
laurensWe authored May 23, 2024
2 parents 0a2dd55 + 73207bb commit 4849142
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@
"POETRY_VIRTUALENVS_CREATE": "false"
},
"remoteUser": "root",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"postCreateCommand": ".devcontainer/postCreateCommand.sh",
"mounts": [
"source=${localEnv:HOME}/.kaggle/kaggle.json,target=/root/.kaggle/kaggle.json,type=bind,consistency=cached"
],
"customizations": {
"vscode": {
"extensions": [
Expand All @@ -16,7 +22,9 @@
"streetsidesoftware.code-spell-checker",
"redhat.vscode-yaml",
"charliermarsh.ruff",
"github.vscode-github-actions"
"github.vscode-github-actions",
"mhutchie.git-graph",
"ms-vsliveshare.vsliveshare"
],
"settings": {
"editor.formatOnPaste": false,
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ This is a template repository that can be used for Python 3.11 projects and uses

When creating a new Repository select this template repository as the base.

After the repository is created make sure to change the following (we may need to consider copier to automate this):
## Kaggle

Before you can use this project you need a [kaggle](https://www.kaggle.com/) account and create a token. You
can store the token in ~/.kaggle/kaggle.json

* change the owners in the the .github/CODEOWNERS
* run a global rename command where you rename new_name to your project name
Expand Down

0 comments on commit 4849142

Please sign in to comment.