norns.community is a collection of open source software for the monome norns sound computer.
This document serves as both the README.md
for this repository and the 'about' page for this website.
After your pull request is merged to the community catalog it will automatically appear on norns.community. The website refreshes nightly at 00:00 UTC, on every merge to its main
branch, or on demand by admins. This GitHub action has all the details.
For script authors, this means:
- your script will appear on the index page
- your author name will appear on the author page
- all of your community catalog scripts will appear under your author name
- your script will get its own page, like this
- your script's README will be displayed on the page
- your script's cover image will be displayed on the page
- your script will be available for discovery via any tags you added to its community catalog entry, like "grid"
- your script and its tags will appear on the explore page
- if you update your README or cover image in your repository, it will automatically refresh on norns.community within 24 hours
These conventions were designed to "just work" with how most scripts are structured today.
READMEs are individually cached from each script's repository in the below cascading sequence. Simply add a README to your project at either of the following locations:
1. ./doc/index.md
2. ./README.md
To ensure maximum resilience, please use absolute URLs in your docs.
Cover images (aka screenshots) are individually cached from each script's repository in the below cascading sequence. Simply add a cover to your project at any of the following locations:
1. ./doc/cover.png
2. ./doc/<your_script_name>.png
3. ./doc/screenshot.png
4. ./cover.png
5. ./<your_script_name>.png
6. ./screenshot.png
If a cover image is not found in any of the above locations, we then try the local archive before finally using a default image:
7. ./archive/screenshot/<your_script_name>.png
8. ./assets/images/dust.png
The local archive cache is from norns.community v1.0. It was archived in February, 2023.
dronecaster is one of many possible examples of what a compatible script structure might look like:
./doc/dronecaster.png (this cover will be used)
./engine
./lib
./.gitignore
./LICENSE
./README.md (this README will be used)
./dronecaster.lua
Please open an issue on GitHub.
A curl script fetches our community catalog. A build script then uses that data to construct this Jekyll website. It is hosted with GitHub pages.
Additionally, these raw resources are available:
- https://norns.community/community.json
- https://norns.community/assets/covers/dronecaster.png (using
dronecaster
as example) - https://norns.community/assets/readmes/dronecaster.md (using
dronecaster
as example)
If you want to help maintain this website, you can run it locally and test your changes before submitting a pull request.
- clone repository to your computer
- install Ruby and bundle
- using a shell, navigate to the
norns-community
directory withcd
- pull the latest community data and build with:
./00-nuke.sh && ./01-curl.sh && ./02-build.py
- in the directory execute:
bundle install
- then execute:
bundle exec jekyll serve --baseurl ''
(save memory/energy and cancel this process while./02-build.py
is running.) - tip: see scripts
package.json
for various shortcuts of the above. - you can now visit http://127.0.0.1:4000 in your browser
This site was built with ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [arm64-darwin21]
There is a single TypeScript file that is used to enable filtering on the "explore" page.
Install TypeScript and watch the file with:
npm i
npm run tsc
The build process assumes the transpiled JavaScript is already there. Perform all the npm
actions locally.
The architecture and technology of this site was inspired by permacomputing concepts.