forked from The-OpenROAD-Project/OpenROAD-flow-scripts
-
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.
Signed-off-by: Michal Czyz <[email protected]>
- Loading branch information
1 parent
dd27910
commit 487482c
Showing
2 changed files
with
38 additions
and
0 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,26 @@ | ||
# GitHub Codespace with OpenROAD GUI | ||
|
||
The goal is to provide a web browser experience of the OpenROAD GUI. Solution works with Firefox and Chrome. | ||
|
||
## User | ||
|
||
|
||
|
||
## Developer | ||
|
||
|
||
|
||
|
||
|
||
# Development loop | ||
|
||
https://code.visualstudio.com/docs/devcontainers/create-dev-container#_full-configuration-edit-loop | ||
|
||
|
||
# devcontainer json reference: | ||
|
||
https://containers.dev/implementors/json_reference/ | ||
|
||
# ORFS Docker | ||
|
||
OpenROAD and OpenROAD Flow Scripts provide a docker image generation script `etc/DockerHelper.sh`, which is reused here to build and publish the image to GH registry. |
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,12 @@ | ||
{ | ||
"image": "ghcr.io/antmicro/openroad-flow-scripts/ubuntu22.04:latest", | ||
"features": { | ||
"ghcr.io/devcontainers/features/desktop-lite:1": {} | ||
}, | ||
"forwardPorts": [6080], | ||
"portsAttributes": { | ||
"6080": { | ||
"label": "desktop" | ||
} | ||
} | ||
} |