Skip to content

Commit

Permalink
core_controller: init project and devenv
Browse files Browse the repository at this point in the history
  • Loading branch information
ElysaSrc committed Apr 5, 2024
1 parent fc0cd2e commit 585fb3a
Show file tree
Hide file tree
Showing 21 changed files with 3,915 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
# --- CORE ---
/core @osrd-project/core-maintainers

# --- CORE CONTROLLER ---
/core_controller @osrd-project/devops

# --- CORE PHYSICS ---
/core/*Physics*.java @osrd-project/physics
/core/*Integration*.java @osrd-project/physics
Expand Down
6 changes: 6 additions & 0 deletions .github/scripts/bake-metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,21 @@ def suffix(self):
TARGETS = [
Target(name="core", image="core", release=True),
Target(name="core-build", image="core", variant="build"),

Target(name="editoast", image="editoast", release=True),
Target(name="editoast-test", image="editoast", variant="test"),

Target(name="front-devel", image="front", variant="devel"),
Target(name="front-nginx", image="front", variant="nginx"),
Target(name="front-build", image="front", variant="build"),
Target(name="front-tests", image="front", variant="tests"),

Target(name="gateway-standalone", image="gateway", variant="standalone"),
Target(name="gateway-test", image="gateway", variant="test"),
Target(name="gateway-front", image="gateway", variant="front", release=True),

Target(name="core_controller", image="core_controller", release=True),
Target(name="core_controller-test", image="core_controller", variant="test"),
]


Expand Down
2 changes: 2 additions & 0 deletions core_controller/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target
.vscode
Loading

0 comments on commit 585fb3a

Please sign in to comment.