{"id":18918006,"url":"https://github.com/supercollider/cookiecutter-supercollider-plugin","last_synced_at":"2026-04-06T06:32:47.549Z","repository":{"id":46990571,"uuid":"148083667","full_name":"supercollider/cookiecutter-supercollider-plugin","owner":"supercollider","description":"cookiecutter project for SuperCollider server plugins","archived":false,"fork":false,"pushed_at":"2023-09-11T13:11:08.000Z","size":70,"stargazers_count":31,"open_issues_count":6,"forks_count":10,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-02-20T01:57:25.605Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"mossheim/cookiecutter-supercollider-plugin","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/supercollider.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-10T01:42:58.000Z","updated_at":"2026-01-23T17:50:52.000Z","dependencies_parsed_at":"2024-11-08T10:41:27.151Z","dependency_job_id":null,"html_url":"https://github.com/supercollider/cookiecutter-supercollider-plugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/supercollider/cookiecutter-supercollider-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supercollider%2Fcookiecutter-supercollider-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supercollider%2Fcookiecutter-supercollider-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supercollider%2Fcookiecutter-supercollider-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supercollider%2Fcookiecutter-supercollider-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/supercollider","download_url":"https://codeload.github.com/supercollider/cookiecutter-supercollider-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supercollider%2Fcookiecutter-supercollider-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31463014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T10:29:05.022Z","updated_at":"2026-04-06T06:32:47.534Z","avatar_url":"https://github.com/supercollider.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"cookiecutter-supercollider-plugin\n=================================\n\nA [cookiecutter] project template for [SuperCollider] server plugins.\n\nTo create a SuperCollider server plugin using this template, first\n[install cookiecutter][installation instructions].\n\nThis cookiecutter template requires at least Python 3.2. If you have multiple versions of python and\nare installing via `pip`, you may need to be explicit about which version of Python you use to\ninstall it to ensure cookiecutter uses a compatible version. For example, on macOS with Python 3.7:\n\n    $ python3.7 -m pip install cookiecutter\n\nThen run:\n\n    $ cookiecutter https://github.com/supercollider/cookiecutter-supercollider-plugin\n\nand answer the questionnaire. See the [cookiecutter documentation] on how to change the default\nvalues for these prompts.\n\nAfter filling out the questionnaire, cookiecutter will clone the project, fill in placeholders with\nyour supplied information, run a Python script from the SuperCollider project to set up your CMake\nfiles, and finally set up a git repository.\n\nHere is an example:\n\n    $ cookiecutter https://github.com/brianlheim/cookiecutter-supercollider-plugin\n    full_path_to_supercollider_source [/home/wendy/supercollider (if you haven't cloned it yet, do that first! Press Ctrl-C to exit this script.]: /Users/brianheim/git/supercollider\n    project_name [Simple Gain]:\n    project_namespace [SimpleGain]:\n    repo_name [simplegain]:\n    plugin_name [SimpleGain]:\n    plugin_description [A simple audio volume gain plugin]:\n    full_name [Wendy Carlos]: Brian Heim\n    github_username [brian.heim]: brianlheim\n    email [brianlheim@site.com]: brianlheim@gmail.com\n\n    Running pre-project-generation hook...\n\n    Checking Python version...\n\n    Checking for SuperCollider repository...\n\n    Running post-project-generation hook...\n\n    Initializing new Git repository\n    Initialized empty Git repository in /Users/brianheim/git/simplegain/.git/\n\n    Running CMake generation script\n    Wrote project file to /Users/brianheim/git/simplegain/CMakeLists.txt\n    Installed 2 CMake modules\n\n    Adding Git remote for plugin project\n\n    Making initial Git commit\n    [master (root-commit) 261d980] Initial commit\n     12 files changed, 1031 insertions(+)\n     create mode 100644 .appveyor.yml\n     create mode 100644 .gitignore\n     create mode 100644 .travis.yml\n     create mode 100644 CMakeLists.txt\n     create mode 100644 LICENSE\n     create mode 100644 README.md\n     create mode 100644 cmake_modules/SuperColliderCompilerConfig.cmake\n     create mode 100644 cmake_modules/SuperColliderServerPlugin.cmake\n     create mode 100644 plugins/SimpleGain/SimpleGain.cpp\n     create mode 100644 plugins/SimpleGain/SimpleGain.hpp\n     create mode 100644 plugins/SimpleGain/SimpleGain.sc\n     create mode 100644 plugins/SimpleGain/SimpleGain.schelp\n\n    Done!\n\nEnter the directory and build the project:\n\n    $ cd simplegain\n    $ mkdir build\n    $ cd build\n    $ cmake .. DSC_PATH=/path/to/supercollider/source -DCMAKE_BUILD_TYPE=Debug\n    $ cmake --build . --config Debug\n\nIf you add more plugins, or add or remove files, make sure to regenerate the CMakeLists.txt file\nusing the generation script. See the README in `tools/cmake_gen` for more info, or run the script\nwith `--help`.\n\n    $ python ../supercollider/tools/cmake_gen/generate_server_plugin_cmake.py --help\n\nExplanation of questionnaire terms:\n\n- project\\_name: The name of the project, used in the README and CMakeLists.txt. Furthermore, the\n  project\\_name with spaces removed will be used as the base install folder.\n- project\\_namespace: C++ namespace for your plugin(s).\n- repo\\_name: GitHub repository name\n- plugin\\_name: Name of the first plugin in your project\n\nLicensing\n---------\n\nThe generated project will be GPLv3-licensed. **Make sure that you change the LICENSE file if you\nwant to use a more permissive license!**\n\nAdvanced instructions\n---------------------\n\n### Use Github Actions to automatically build, compile and release your plugins\n\nWhen generating a project using this cookiecutter recipe, a config file is included in `.github/workflows/build.yml` containing an action for Github Actions to build, compile and zip up your code for MacOS, Linux and Windows. \n\nIt is set to trigger on one event: If you push a new tag prefixed with `v` (eg. `v1.0` or `v4.0.1`) to your repo, Github Actions will activate and start the process of building and releasing. If succesful, your finished builds should appear in the *Releases* column.\n\nYou should get an email from Github once the run is finished, but otherwise you can navigate to the *Actions* pane on your Github repository to see the details and command outputs of each build.\n\n### Requirements\n------------\n\n* Basic development tools (C++ compiler, cmake, etc.)\n* Python \u003e= 3.2\n* Git\n* [cookiecutter]\n\nKnown issues and future work\n----------------------------\n\n[cookiecutter]: https://github.com/audreyr/cookiecutter\n[cookiecutter documentation]: https://cookiecutter.readthedocs.io/en/0.9.1/advanced_usage.html#user-config-0-7-0\n[SuperCollider]: https://github.com/supercollider/supercollider\n[installation instructions]: http://cookiecutter.readthedocs.org/en/latest/installation.html\n[Travis]: https://docs.travis-ci.com/user/getting-started/\n[AppVeyor]: https://ci.appveyor.com/signup\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsupercollider%2Fcookiecutter-supercollider-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsupercollider%2Fcookiecutter-supercollider-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsupercollider%2Fcookiecutter-supercollider-plugin/lists"}