{"id":22003663,"url":"https://github.com/zs1l3nt/rs-cli-nova","last_synced_at":"2026-04-13T01:40:31.288Z","repository":{"id":54048976,"uuid":"355961492","full_name":"zS1L3NT/rs-cli-nova","owner":"zS1L3NT","description":"A simple CLI for me to copy project configurations into new folders whenever I need to without having to reach over into the other folders","archived":false,"fork":false,"pushed_at":"2024-02-22T06:53:51.000Z","size":188,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-28T12:44:29.615Z","etag":null,"topics":["rust","sqlite"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/zS1L3NT.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-08T15:31:08.000Z","updated_at":"2024-02-10T14:28:45.000Z","dependencies_parsed_at":"2024-02-10T06:25:57.393Z","dependency_job_id":"fa41140d-8618-4ed0-9d92-8c32e9bb2cf4","html_url":"https://github.com/zS1L3NT/rs-cli-nova","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zS1L3NT%2Frs-cli-nova","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zS1L3NT%2Frs-cli-nova/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zS1L3NT%2Frs-cli-nova/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zS1L3NT%2Frs-cli-nova/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zS1L3NT","download_url":"https://codeload.github.com/zS1L3NT/rs-cli-nova/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245061377,"owners_count":20554563,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["rust","sqlite"],"created_at":"2024-11-30T00:10:25.126Z","updated_at":"2026-04-13T01:40:26.258Z","avatar_url":"https://github.com/zS1L3NT.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nova CLI\n\n![License](https://img.shields.io/github/license/zS1L3NT/rs-cli-nova?style=for-the-badge) ![Languages](https://img.shields.io/github/languages/count/zS1L3NT/rs-cli-nova?style=for-the-badge) ![Top Language](https://img.shields.io/github/languages/top/zS1L3NT/rs-cli-nova?style=for-the-badge) ![Commit Activity](https://img.shields.io/github/commit-activity/y/zS1L3NT/rs-cli-nova?style=for-the-badge) ![Last commit](https://img.shields.io/github/last-commit/zS1L3NT/rs-cli-nova?style=for-the-badge)\n\nNova is my personal CLI for importing project config files into my new projects. Nova also helps me import project secrets back when I clone them from GitHub again or onto another machine.\n\n## Motivation\n\nI have had many TypeScript projects, and copying the config files into new projects can be tiring. Plus, I wanted to have somewhere I can store the most up-to-date version of these project config files. Using Nova CLI, I can always import the latest version of these config files into fresh or outdated projects.\n\n## Features\n\n-   Writing to config files\n    -   `nova configs clone [...shorthands]`\n        -   `ts` - Adds my tsconfig.json file\n        -   `git` - Adds my .gitignore file\n        -   `pkg` - Adds my generic package.json file\n        -   `ecf` - Adds my .editorconfig file\n        -   and many more...\n-   Listing all config files\n    -   `nova configs list`\n-   Editing a configuration\n    -   `nova configs vim [shorthand]`\n-   Adding a new configuration\n    -   `nova configs add [shorthand] [filename]`\n-   Removing a configuration\n    -   `nova configs remove [shorthand]`\n-   Generating a list of dependencies for my README.md files\n    -   `nova generate`\n        -   NodeJS Projects\n        -   DenoJS Projects\n        -   Dart Projects\n        -   Rust Projects\n-   Listing all project secret files\n    -   `nova secrets list`\n-   Cloning a project secret file\n    -   `nova secrets clone`\n-   Setting a project secret file\n    -   `nova secrets set [path/to/file]`\n-   Removing a project secret file\n    -   `nova secrets remove [path/to/file]`\n\n## Usage\n\nTo use Nova CLI, run this command\n\n```\n$ cargo run\n```\n\n## Built with\n\n-   Rust\n    -   Database\n        -   [![diesel](https://img.shields.io/badge/diesel-2.1.4-yellow?style=flat-square)](https://crates.io/crates/diesel/2.1.4)\n    -   Text Parsing\n        -   [![json](https://img.shields.io/badge/json-0.12.4-yellow?style=flat-square)](https://crates.io/crates/json/0.12.4)\n        -   [![serde](https://img.shields.io/badge/serde-1.0.196-yellow?style=flat-square)](https://crates.io/crates/serde/1.0.196)\n        -   [![serde_json](https://img.shields.io/badge/serde__json-1.0.113-yellow?style=flat-square)](https://crates.io/crates/serde_json/1.0.113)\n        -   [![serde_yaml](https://img.shields.io/badge/serde__yaml-0.9.31-yellow?style=flat-square)](https://crates.io/crates/serde_yaml/0.9.31)\n        -   [![toml](https://img.shields.io/badge/toml-0.8.10-yellow?style=flat-square)](https://crates.io/crates/toml/0.8.10)\n        -   [![urlencoding](https://img.shields.io/badge/urlencoding-2.1.3-yellow?style=flat-square)](https://crates.io/crates/urlencoding/2.1.3)\n    -   Miscellaneous\n        -   [![clipboard](https://img.shields.io/badge/clipboard-0.5.0-yellow?style=flat-square)](https://crates.io/crates/clipboard/0.5.0)\n        -   [![prettytable-rs](https://img.shields.io/badge/prettytable--rs-0.10.0-yellow?style=flat-square)](https://crates.io/crates/prettytable-rs/0.10.0)\n        -   [![regex](https://img.shields.io/badge/regex-1.10.3-yellow?style=flat-square)](https://crates.io/crates/regex/1.10.3)\n        -   [![seahorse](https://img.shields.io/badge/seahorse-2.2.0-yellow?style=flat-square)](https://crates.io/crates/seahorse/2.2.0)\n        -   [![sudo](https://img.shields.io/badge/sudo-0.6.0-yellow?style=flat-square)](https://crates.io/crates/sudo/0.6.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzs1l3nt%2Frs-cli-nova","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzs1l3nt%2Frs-cli-nova","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzs1l3nt%2Frs-cli-nova/lists"}