https://github.com/rzblue/test-codespaces
https://github.com/rzblue/test-codespaces
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rzblue/test-codespaces
- Owner: rzblue
- License: mit
- Created: 2022-10-04T18:35:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-04T18:35:05.000Z (about 3 years ago)
- Last Synced: 2025-08-02T09:26:35.453Z (5 months ago)
- Language: Java
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
FRC1018 Template Robot Project
======================================
This repository is a template intended to be used to bootstrap new robot projects quickly.
### Out of the box features:
- Code style checking with Spotless
- GitHub Actions CI
- All vendordeps we typically use installed
## Creating a new project
### 1. Clone this repo to your computer
Replace `MyNewProject` with the name of the project directory.
git clone https://github.com/PikeRoboDevils/JavaTemplateProject.git MyNewProject
### 2. Remove `.git` directory and initialize git
This is so the project will have its own history.
rm -rf .git
git init
### 3. Update package name if necessary
It's easier to use a refactoring tool like IntelliJ for this step.
Be sure to update `ROBOT_MAIN_CLASS` in `build.gradle`.