Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luke-zhang-04/quickstart
One command to quickstart your project.
https://github.com/luke-zhang-04/quickstart
Last synced: 7 days ago
JSON representation
One command to quickstart your project.
- Host: GitHub
- URL: https://github.com/luke-zhang-04/quickstart
- Owner: Luke-zhang-04
- License: mit
- Created: 2020-05-27T21:05:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-16T04:12:24.000Z (about 4 years ago)
- Last Synced: 2024-11-07T08:44:27.965Z (about 2 months ago)
- Language: Shell
- Homepage:
- Size: 331 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
One command to quickstart your project.
***
Shell scripts to help you configure a project faster.
## Windows
Unfortunately, I have no idea how to use Powershell or command prompt. Any help adding support for Windows would be great. Alternatively, you can try and get some sort of bash/zsh emulator for Windows.## Resources
We use resources from the following Gists:
[https://gist.github.com/Luke-zhang-04/140bea238fa6dec12929c220645540e1](https://gist.github.com/Luke-zhang-04/140bea238fa6dec12929c220645540e1)
[https://gist.github.com/Luke-zhang-04/d4c19d39f0a462fc79e0b3361752cf95](https://gist.github.com/Luke-zhang-04/d4c19d39f0a462fc79e0b3361752cf95)## Installation
### Curl
```bash
curl -L https://github.com/Luke-zhang-04/quickstart/archive/.tar.gz | tar zx # Download file
mv quickstart- quickstart/ # Rename folder to just quickstart
```
### Git Clone
Warning: this clones the latest version from master, which may not be stable
```bash
git clone https://github.com/Luke-zhang-04/quickstart.git quickstart # Clones repo to quickstart dir
```
Alternaitvely, you can download manually from [https://github.com/Luke-zhang-04/quickstart/releases](https://github.com/Luke-zhang-04/quickstart/releases)## Add to PATH (Optional)
You can add quickstart to your PATH, for an example, in bash or zsh:
```bash
PATH=$PATH:~/path_to_quickstart/quickstart/
```
Or in fish:
```bash
set PATH $PATH:~/path_to_quickstart/quickstart/
```## Usage
### Example React App, Typescript, Bootstrap, Eslint, Stylelint, CodeClimate, and Makebash
```bash
cd my_project_root
bash ../quckstart/quickstart.bash react ts bs esl sl cc make
```zsh
Coming soon, for now, just run with bash```zsh
cd my_project_root
bash ../quckstart/quickstart.bash react ts bs esl sl cc make
```fish
Coming soon, for now, just run with bash```shell
cd my_project_root
bash ../quckstart/quickstart.bash react ts bs esl sl cc make
```Powershell
Coming soon### Quickstart without any options