-
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.
Merge pull request #1 from AD-SDL/clean_make
Remove Makefile
- Loading branch information
Showing
19 changed files
with
93 additions
and
643 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 |
---|---|---|
|
@@ -168,3 +168,6 @@ cython_debug/ | |
|
||
# Ruff | ||
.ruff_cache | ||
|
||
# Outputs | ||
experiment_output.jpg |
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
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,8 @@ | ||
# Copy this file and rename to `.env` to set environment variables for docker-compose | ||
USER_ID= | ||
GROUP_ID= | ||
PROJECT_DIR=~/workspace/wei_template_workcell | ||
WEI_DATA_DIR=~/.wei | ||
REDIS_DIR=~/.wei/redis | ||
WORKCELL_FILENAME=example_workcell.yaml | ||
WORKCELLS_DIR=${PROJECT_DIR}/workcell_defs |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1,11 @@ | ||
# Example App | ||
|
||
In the `example_app` directory: | ||
|
||
``` | ||
python -m venv .venv | ||
source .venv/bin/activate | ||
pip install -e . | ||
# After starting the workcell: | ||
python example_app.py | ||
``` |
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 |
---|---|---|
|
@@ -4,9 +4,7 @@ version = "1.0.0" | |
description = "A simple example WEI application that waits for a set amount of time, then takes a picture with a webcam." | ||
authors = [{name = "Ryan D. Lewis", email="[email protected]"}] | ||
dependencies = [ | ||
# "fastapi>=0.103", | ||
# "uvicorn>=0.14.0", | ||
# "ad_sdl.wei", | ||
"ad_sdl.wei", | ||
] | ||
requires-python = ">=3.8.1" | ||
readme = "README.md" | ||
|
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
Oops, something went wrong.