Created
September 23, 2017 12:49
-
-
Save beeblebrox3/a43f83be69572bcfff154134c503248a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### star_create_project project_name | |
ProjectName="$1" | |
wget -O "$ProjectName.zip" https://github.com/beeblebrox3/star/archive/master.zip | |
unzip "$ProjectName.zip" | |
mv star-master "$ProjectName" | |
rm "$ProjectName.zip" | |
cd "$ProjectName" | |
cp .env.example.js .env.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment