{"id":19493178,"url":"https://github.com/drearondov/rocketlauncher","last_synced_at":"2026-05-13T22:33:36.514Z","repository":{"id":164831148,"uuid":"340440958","full_name":"drearondov/rocketLauncher","owner":"drearondov","description":"Very opinionated CLI to help jumpstart a project. Create new virtual environment, use Cookiecutter to create a file structure and upload to Github.","archived":false,"fork":false,"pushed_at":"2021-03-10T20:23:56.000Z","size":127,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T20:20:17.018Z","etag":null,"topics":["cli","cli-app","cookiecutter","poetry","pyenv","typer"],"latest_commit_sha":null,"homepage":"https://rocketlauncher.readthedocs.io/en/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/drearondov.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-19T17:25:03.000Z","updated_at":"2021-03-10T20:27:36.000Z","dependencies_parsed_at":"2023-05-22T17:15:31.472Z","dependency_job_id":null,"html_url":"https://github.com/drearondov/rocketLauncher","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/drearondov/rocketLauncher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drearondov%2FrocketLauncher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drearondov%2FrocketLauncher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drearondov%2FrocketLauncher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drearondov%2FrocketLauncher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drearondov","download_url":"https://codeload.github.com/drearondov/rocketLauncher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drearondov%2FrocketLauncher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33002718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cli","cli-app","cookiecutter","poetry","pyenv","typer"],"created_at":"2024-11-10T21:24:42.436Z","updated_at":"2026-05-13T22:33:36.498Z","avatar_url":"https://github.com/drearondov.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rocket Launcher\n\n![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/drearondov/rocketlauncher?include_prereleases\u0026style=flat-square) ![Travis (.com)](https://img.shields.io/travis/com/drearondov/rocketlauncher?style=flat-square)  ![GitHub](https://img.shields.io/github/license/drearondov/rocketlauncher?style=flat-square) ![Codestyle](https://img.shields.io/badge/code%20style-black-333333?style=flat-square)\n\nA **very** opinionated CLI to automate the start of a new project.\n\n* Free software: GNU General Public License v3\n* Documentation: https://rocket-launcher.readthedocs.io.\n\n## Features\n\n* Select environment manager (`pyenv`, `conda` supported)\n* Create new virtual environment by default\n* Create folder structure from cookiecutter\n* Choose to create repository and upload project to Github\n* Configure defaults values\n* Quickstart a new project with default values\n\n## Installation\n\nSince the nature of this package is very opinionated (meaning, made with me in mind) I will not be publishing to `pypi`. But if you would like to use it, this are the installation steps.\n\n### Prerequisites\n\nFor rocketLauncher to work the followinng packages need to be installed.\n\n* [pyenv](https://github.com/pyenv/pyenv)\n* [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv)\n* [conda](https://docs.conda.io/projects/conda/en/latest/index.html)\n* [cookiecutter](https://github.com/audreyr/cookiecutter)\n* [git](https://git-scm.com)\n* [GithubCLI](https://cli.github.com)\n\nOnce installed you can use the following code to get the latest release.\n\n```bash\n    repo='https://github.com/drearondov/rocketLauncher'\n\n    # Find the latest release.\n    latest=$(git ls-remote --tags --refs $repo | # Fetch remote tags.\n                     sort -t '/' -k 3 -V |       # Sort them by version.\n                     tail -n 1 |                 # Take the latest one.\n                     awk -F / '{print $3}')      # Return only the tag.\n\n    # Craft the URL for the release asset.\n    version=$(echo $latest | tr -d 'v')  # Remove the leading v.\n    wheel=\"rocket_launcher-${version}-py3-none-any.whl\"\n    release=\"${repo}/releases/download/${latest}/${wheel}\"\n\n    # Install the release.\n    pip install $release\n```\n\n## Usage\n\nThe available commands are:\n\n* `rocketlauncher init`: Configures the projects directory and logs in to Github\n* `rocketlauncher new`: Creates a new project and runs a cookiecutter inside\n* `rocketlauncher push`: Creates local repository and pushes to Github\n* `rocketlauncher config`: Allows the creation of a configuration file and edit/set defaults\n* `rocketlauncher cookiecutters`: Add/ view available cookiecutters\n## Credits\n\nThis package was created with Cookiecutter and the [audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage) project template.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrearondov%2Frocketlauncher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrearondov%2Frocketlauncher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrearondov%2Frocketlauncher/lists"}