-
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.
This will generate the base asp facts, along with an early set of rules to parse. I will need to add to this rules for min/max, along with the integration of cost APIs. Likely I will add AWS first, and the other list of stuffs in the README. Signed-off-by: vsoch <[email protected]>
- Loading branch information
Showing
19 changed files
with
650 additions
and
23 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,6 @@ | ||
FROM ghcr.io/autamus/clingo | ||
|
||
LABEL maintainer="Vanessasaurus <@vsoch>" | ||
|
||
# Pip not provided in this version | ||
RUN apt-get update && apt-get install -y python3 python3-pip git |
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,31 @@ | ||
{ | ||
"name": "Cloud Select Development Environment", | ||
"dockerFile": "Dockerfile", | ||
"context": "../", | ||
|
||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"terminal.integrated.defaultProfile.linux": "bash", | ||
|
||
// Ensure that Python autocomplete works out of the box | ||
"python.autoComplete.extraPaths": [ | ||
"/workspaces/cloud-select", | ||
"/usr/local/lib/python3.8", | ||
"/usr/local/lib/python3.8/site-packages" | ||
], | ||
"python.analysis.extraPaths": [ | ||
"/workspaces/cloud-select", | ||
"/usr/local/lib/python3.8", | ||
"/usr/local/lib/python3.8/site-packages" | ||
] | ||
}, | ||
// Note to Flux Developers! We can add extensions here that you like | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
}, | ||
// Needed for git security feature (this assumes you locally cloned to flux-core) | ||
"postStartCommand": "git config --global --add safe.directory /workspaces/cloud-select" | ||
} |
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
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
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
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
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 @@ | ||
from .properties import Properties | ||
from .solver import Solver |
Oops, something went wrong.