Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gko/project
☕️ Create node, rust, python or ruby project locally and on github (private or public)
https://github.com/gko/project
cargo create git github node npm pip project projects python ruby rust
Last synced: 2 months ago
JSON representation
☕️ Create node, rust, python or ruby project locally and on github (private or public)
- Host: GitHub
- URL: https://github.com/gko/project
- Owner: gko
- License: mit
- Created: 2017-01-21T14:34:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-12T06:29:29.000Z (7 months ago)
- Last Synced: 2024-06-12T11:56:06.325Z (7 months ago)
- Topics: cargo, create, git, github, node, npm, pip, project, projects, python, ruby, rust
- Language: Shell
- Homepage: https://dev.to/konstantin/managing-your-projects-31p1
- Size: 1.31 MB
- Stars: 19
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Project
Create `npm`, `cargo`, `gem` or `pip` project locally and on `github` or just `cd` into existing.
![demo](/demo.png)
After project init you will be prompted to create a `github` repo (private or public).
![github](/github.png)
You can read more about it in the «[Managing your projects](https://dev.to/konstantin/managing-your-projects-31p1)» article.
## Installation
You will need to install [github cli](https://cli.github.com/) (see this [installation instructions](https://github.com/cli/cli#installation)) in order to create project repository on `github`.
### With [antigen](https://github.com/zsh-users/antigen)
In your .zshrc
```sh
antigen bundle gko/project
```### Manually
You need to clone repo:
```bash
git clone --recursive --depth 1 https://github.com/gko/project
```
then add it to .bashrc or .zshrc:
```bash
source ./project/project.sh
```## Usage
```
Usage: project [options]
Example:
project -p test
Options:
-h, --help help
-p, --private create private github repository
-f, --folder your projects folder(defaults to ~/projects)
-n, --no-init avoid initializing package
```then to create public repo:
```bash
project test
```create private repo:
```bash
project -p test
```If the project exist you will just `cd` into its folder.
If no name is given you will just `cd` to `projects` folder.
If you type `project -` then you'll jump to previous project folder.
### Autocomplete
Supports `zsh-autocomplete`. On Tab will show the list of available projects.
You can also alias it (in `~/.zshrc` or `~/.bashrc`):
```shell
alias p='project'
```to get:
```shell
p test-project
```### Projects path
You can specify projects path by either `-f` key or `$PROJECTS_HOME` variable:
```bash
project -f /projects_path
```
or
```bash
export PROJECTS_HOME=/projects_path
```
Otherwise default path is `~/projects`## Like it?
:star: this repo
## License
[MIT](http://opensource.org/licenses/MIT)
Copyright (c) 2012-2024 Konstantin Gorodinskiy