Skip to content

Commit f4dbf26

Browse files
authored
Merge pull request #1 from RoboLancers/robolancer_updates
Robolancer updates. Updated a bunch of team-specific information. Re-wrote several tutorials/guides. Updated the theme and formatting. Filled in some to-do's and works in progress.
2 parents 5300e3d + e4d6be3 commit f4dbf26

File tree

86 files changed

+4097
-874
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+4097
-874
lines changed

.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(grep:*)",
5+
"WebSearch",
6+
"WebFetch(domain:github.com)"
7+
]
8+
}
9+
}

.devcontainer/devcontainer.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
3+
{
4+
"name": "python:3:10",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/base:debian",
7+
"features": {
8+
"ghcr.io/devcontainers-extra/features/mkdocs:2": {},
9+
"ghcr.io/devcontainers/features/python:1":{}
10+
},
11+
"postCreateCommand": [
12+
"pip3 install --user -r requirements.txt",
13+
"pip3 install --user first-agentic-csa"
14+
"curl -fsSL https://claude.ai/install.sh | bash"
15+
],
16+
"customizations": {
17+
"vscode": {
18+
"extensions": [
19+
"main-branch.mkdocs-snippet-lens",
20+
"aikebang.mkdocs-syntax-highlight",
21+
"ytianle.mkdocs-material-linter"
22+
]
23+
}
24+
},
25+
26+
// Features to add to the dev container. More info: https://containers.dev/features.
27+
// "features": {},
28+
29+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
30+
// "forwardPorts": [],
31+
32+
// Configure tool-specific properties.
33+
34+
35+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
36+
// "remoteUser": "root"
37+
}

.github/copilot-instructions.md

Lines changed: 107 additions & 0 deletions

.github/workflows/Deploy_site.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Deploy Site
2+
permissions:
3+
contents: write
4+
on:
5+
# pull_request:
6+
# branches:
7+
# - robolancer_updates
8+
push:
9+
branches:
10+
- robolancer_updates
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: 3.x
19+
- run: pip install -r requirements.txt
20+
- run: mkdocs build
21+
22+
deploy:
23+
runs-on: ubuntu-latest
24+
needs: build
25+
steps:
26+
- uses: actions/checkout@v2
27+
- uses: actions/setup-python@v2
28+
with:
29+
python-version: 3.x
30+
- run: pip install mkdocs
31+
- run: pip install -r requirements.txt
32+
- run: mkdocs gh-deploy --force

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Build MkDocs
22
on:
3-
pull_request:
3+
push:
44
branches:
5-
- main
5+
- robolancer_updates
66
jobs:
77
build:
88
runs-on: ubuntu-latest

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish docs via GitHub Pages
22
on:
33
push:
44
branches:
5-
- main
5+
- robolancer_updates
66
jobs:
77
deploy:
88
runs-on: ubuntu-latest

.vscode/mcp.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"servers": {
3+
"frc-docs": {
4+
"type": "stdio",
5+
"command": "uvx",
6+
"args": [
7+
"first_agentic_csa==0.3.12"
8+
],
9+
"env": {}
10+
}
11+
},
12+
"inputs": []
13+
}
7.95 KB
5.69 KB
443 KB

0 commit comments

Comments
 (0)