generated from AAU-Dat/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add devcontainer. Rename base module. Cleanup gitignore, out folder, …
…and misc.xml (#27)
- Loading branch information
1 parent
6a4dc10
commit e98aa1a
Showing
7 changed files
with
32 additions
and
34 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,5 @@ | ||
FROM movesrwth/stormpy:stable | ||
|
||
RUN apt update && apt upgrade -y | ||
RUN apt install texlive-full -y | ||
|
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,23 @@ | ||
{ | ||
"name": "Stormpy", | ||
// "image": "movesrwth/stormpy:stable", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"runArgs": ["--name", "stormpy-devcontainer"], | ||
"customizations": { | ||
"jetbrains": { | ||
"plugins": [ | ||
"nl.rubensten.texifyidea", | ||
"com.firsttimeinforever.intellij.pdf.viewer.intellij-pdf-viewer" | ||
] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"James-Yu.latex-workshop", | ||
"ms-vscode-remote.vscode-remote-extensionpack", | ||
"ms-azuretools.vscode-docker" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -54,7 +54,7 @@ cmake-build-*/ | |
*.iws | ||
|
||
# IntelliJ | ||
out/ | ||
#out/ | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
# Added this file to include the out folder in the repository, despite being otherwise empty | ||
* | ||
!.gitignore |