https://github.com/thought-machine/coderetreatskeleton
Skeleton code for running Code Retreat
https://github.com/thought-machine/coderetreatskeleton
Last synced: 7 months ago
JSON representation
Skeleton code for running Code Retreat
- Host: GitHub
- URL: https://github.com/thought-machine/coderetreatskeleton
- Owner: thought-machine
- License: apache-2.0
- Created: 2024-08-05T15:28:13.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-07-28T15:02:27.000Z (10 months ago)
- Last Synced: 2025-07-28T16:33:14.438Z (10 months ago)
- Language: Shell
- Size: 17.6 KB
- Stars: 0
- Watchers: 24
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Retreat Skeleton Code
This repository contains skeleton code that Code Retreat Participants can use to get started.
## Go
```shell
echo "{\"PleasePath\":\"$PWD/pleasew\"}" > puku.json
# Update BUILD files
./pleasew puku fmt //go/...
# Run the binary
./pleasew run //go/cmd/conway
# Run the tests
./pleasew test //go/...
# Install third party packages
./pleasew build //third_party/go:toolchain
GO="$PWD/$(./pleasew query outputs //third_party/go:toolchain)/bin/go"
(cd third_party/go && $GO get github.com/stretchr/testify@latest) && ./pleasew puku sync -w
```
## Python
```shell
# Run the binary
./pleasew run //python:main
# Run the tests
./pleasew test //python/...
```