BBQ FIRST was started in 2015 as a way to track FIRST Robotics Competition (FRC) event strength via thematically named statistical metrics. While the metrics themselves are humorous, the data gives insight into the strength of any given event by ranking them against each other using historic team performance.
In lieu of a software architecture document (work in progress): The current website uses the Vue.js framework with Vite as the local development server. The public site is hosted on vercel. The database and any backend services are on supabase. Python is used to periodically update the data, as managed by Github Actions.
Github milestones are the best way to get visibility into the project roadmap at this time. If you have an idea for a feature, please make a Github issue so it can be added to the appropriate milestone!
Contributions from the community are encouraged! Please remember to follow the code of conduct whenever contributing or interacting with the community.
An example git workflow for contributing can be found below.
If you have an idea for a new feature of BBQ FIRST, let us know by creating a Github issue.
While it is not guaranteed that a feature request will be incorporated into the website, we are always looking for great ideas. A feature is far more likely to be prioritized if it:
If you find something isn't working, please create a Github issue that includes the steps to reproduce, as well as any evidence/screenshots/print outs that may be helpful in diagnosing the root cause.
Things that only need to be done once:
Then, the following steps are repeated for each Github issue:
main
branch. At this point, if the pull request is for a prioritized issue (i.e. it is associated with a Github issue that has a tracked milestone), it will be reviewed by a project admin. If it is not a prioritized issue, it may still be reviewed depending on the project admins availability.
A pull request review is an iterative process. This is an open source project run by volunteers, so patience and gracious professionalism is requested.
Hosting the website locally requires a node.js and npm
installation.
With those prerequisites satisfied, run the following command from your repository root in the terminal to install all the dependencies:
npm install
Then to host locally in development mode, run
npm run dev
Running the data update scripts requires python
to be installed, and the use of poetry
as a package manager. Other package managers would work as well, however poetry
is the chosen package manager / virtual environment for this project.
To perform any update to the database itself, you must have write permissions to the database. These permissions are not being given out for the production database at this time. However, there is planned work for a development database that will have more permissive settings for community members to contribute to.
First, navigate to the util/
directory and install all dependencies for the python update scripts using
poetry update
Running the data update scripts can be done with the following call:
poetry run python main.py
and then adding in the appropriate mode and configuration settings per the argument parser in main.py