Skip to content

Latest commit

 

History

History
55 lines (45 loc) · 1.03 KB

DEVELOPMENT.md

File metadata and controls

55 lines (45 loc) · 1.03 KB

Development Guidelines

Local Development

Build:

docker build . -t webots-animation-action

Animation

Pull a sample project:

git clone https://github.com/cyberbotics/webots-animation-template.git $HOME/webots-animation-template

Run:

docker run \
    -v $HOME/webots-animation-template:/root/repo \
    -w /root/repo \
    -e DEBUG=true \
    -it webots-animation-action

Competition

Pull a sample project:

git clone https://github.com/lukicdarkoo/webots-competition-organizer.git $HOME/webots-competition-organizer

Run:

docker run \
    -v $HOME/webots-competition-organizer:/root/repo \
    -w /root/repo \
    -e DEBUG=true \
    -it webots-animation-action

Competitor

Pull a sample project:

git clone https://github.com/lukicdarkoo/webots-competition-competitor.git $HOME/webots-competition-competitor

Run:

docker run \
    -v $HOME/webots-competition-competitor:/root/repo \
    -w /root/repo \
    -e DEBUG=true \
    -it webots-animation-action