Clone the subprojects, and vscode workspace settings

This commit is contained in:
gri38 2022-03-20 11:07:33 +01:00
parent 165f356c04
commit 3fc75c5854
4 changed files with 31 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
django-joplin-vieweb/
joplin-terminal-xapi/

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"files.exclude": {
"django-joplin-vieweb": true,
"joplin-terminal-xapi": true,
},
}

5
clone-for-dev.sh Executable file
View File

@ -0,0 +1,5 @@
#/bin/sh
for project in joplin-terminal-xapi django-joplin-vieweb; do
git clone git@github.com:joplin-vieweb/${project}.git
done

18
workspace.code-workspace Normal file
View File

@ -0,0 +1,18 @@
{
"folders": [
{
"path": "joplin-terminal-xapi"
},
{
"path": "django-joplin-vieweb"
},
{
"path": ".",
"ignore": [
"joplin-terminal-xapi/",
"joplin-vieweb"
]
}
],
"settings": {}
}