No description
Find a file
2025-08-25 09:01:04 -04:00
.github/workflows add timeout-minutes to adabot.update_cp_org_libraries action task 2025-04-21 12:23:25 -05:00
_blinka Add missing CP 10 Beta 2 boards 2025-08-19 11:23:35 -07:00
_board fix crowpanel 3.5 images 2025-08-25 06:58:42 -05:00
_data remove 9.2.8 for MagTag; add MagTag 2025 Edition info in board description; add bootloader update info 2025-07-30 21:53:47 -04:00
_includes additional warnings for MagTag 2025 2025-07-30 22:10:12 -04:00
_layouts get latest 2.x.x version of web-firmware-installer-js automatically 2025-07-31 13:55:50 -04:00
adabot@d685668463 update submodules 2025-06-12 15:00:39 -05:00
api
assets fix crowpanel 3.5 images 2025-08-25 06:58:42 -05:00
awesome-circuitpython@21edca3c36 update submodules 2025-08-22 15:31:40 -05:00
bin add helper script to run jekyll with yjit enabled and some useful flags 2025-02-24 14:52:15 -06:00
connect
contributing
doc
lib/tasks
libraries Add 10.x bundles 2025-04-04 17:43:57 -04:00
tools Fix doubled // in bootloader path 2025-07-02 12:44:23 -04:00
.gitignore
.gitmodules
.tool-versions bump default ruby version to 3.4.2 2025-02-24 14:52:25 -06:00
404.html
_config.yml add new filter to only use featured guides from circuitpython category 2025-04-09 09:50:40 -05:00
awesome.html
blinka.html
CNAME
downloads.html
feed.html
Gemfile Bump webrick from 1.8.1 to 1.8.2 2024-10-22 16:42:34 +00:00
Gemfile.lock Bump json from 2.10.1 to 2.10.2 2025-03-28 18:09:32 +00:00
index.html Merge pull request #1609 from jwcooper/design-cleanup 2025-04-01 11:00:22 -04:00
package-lock.json
Rakefile
README.md update readme and bump jekyll and associated dependencies to latest version 2025-02-24 14:51:53 -06:00
template.md Add missing boards up to CP 9.2.5 2025-03-20 16:01:48 -07:00
trademarks.html

CircuitPython organization site

A more detailed gude for adding a board to CircuitPython can be found in the following Adafruit Learn guide: How to add a New Board to the circuitpython.org website

To add a new board to the site:

  1. Duplicate template.md to _board/<board id>.md.
  2. Edit _board/<board id>.md according to the template's instructions.
  3. In your _board/<board id>.md you will specify a board_image. Create 3 versions of this file, in the following sizes and folder locations:
Size File Dimensions (px)
Original assets/images/orignal/{board_image} 900px+ width and 4:3 ratio width
example: 900 x 675
Large assets/images/large/{board_image} 800 x 600
Small assets/images/small/{board_image} 300 x 225

For more information on preferred images or if you prefer or must use 13:10 see Preparing the Images in the Adafruit Learn guide

  1. Create a pull request with the file changes.

To test your changes locally:

  1. You need "ruby" and "ruby-bundler" installed locally. These instructions were tested with ruby 2.5 and ruby-bundler 1.17.3 on a Debian Stretch system.
  2. As needed, git submodule update --init --recursive to fetch the submodules
  3. One time, run bundle config set path 'vendor/bundle' && bundle install
  4. Run bundle exec jekyll serve to generate the site locally
  5. Visit the displayed "server address"
  6. After most local edits, the content will be updated. You will need to reload (ctrl-r or F5) your browser

Note: For faster jekyll builds, you can use the --incremental flag. You'll also want to install ruby with yjit enabled for even faster builds.