Last active
January 10, 2020 20:23
-
-
Save vanessa/ff34f758da93f53cb9ac19e62558b0da to your computer and use it in GitHub Desktop.
Revisions
-
Vanessa Barreiros renamed this gist
Jan 10, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Vanessa Barreiros revised this gist
Jan 10, 2020 . No changes.There are no files selected for viewing
-
Vanessa Barreiros revised this gist
Jan 10, 2020 . 1 changed file with 2 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,12 @@ #!/bin/bash # Archive the boilerplate git archive -o boilerplate.zip HEAD echo "Created new file named boilerplate.zip" # Go back and create a new project using the archived version cd .. django-admin startproject test_boilerplate \ --extension py,yml,json \ --name Procfile,README.md,.env.example \ --template=django-react-boilerplate/boilerplate.zip @@ -17,6 +15,6 @@ echo "Started project called $PROJECT_NAME" # Delete it and change into the boilerplate folder rm django-react-boilerplate/boilerplate.zip echo "Removed boilerplate.zip" cd test_boilerplate echo "Done!" -
Vanessa Barreiros revised this gist
Jan 10, 2020 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,14 +4,19 @@ PROJECT_NAME=test_boilerplate # Archive the boilerplate git archive -o boilerplate.zip HEAD echo "Created new file named boilerplate.zip" # Go back and create a new project using the archived version cd .. django-admin startproject $PROJECT_NAME \ --extension py,yml,json \ --name Procfile,README.md,.env.example \ --template=django-react-boilerplate/boilerplate.zip echo "Started project called $PROJECT_NAME" # Delete it and change into the boilerplate folder rm django-react-boilerplate/boilerplate.zip echo "Removed boilerplate.zip" cd $PROJECT_NAME echo "Done!" -
Vanessa Barreiros revised this gist
Jan 10, 2020 . 1 changed file with 13 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,17 @@ #!/bin/bash PROJECT_NAME=test_boilerplate # Archive the boilerplate git archive -o boilerplate.zip HEAD # Go back and create a new project using the archived version cd .. django-admin startproject $PROJECT_NAME \ --extension py,yml,json \ --name Procfile,README.md,.env.example \ --template=django-react-boilerplate/boilerplate.zip # Delete it and change into the boilerplate folder rm django-react-boilerplate/boilerplate.zip cd $PROJECT_NAME -
Vanessa Barreiros revised this gist
Jan 10, 2020 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ #!/bin/bash git archive -o boilerplate.zip HEAD cd .. django-admin startproject theprojectname --extension py,yml,json --name Procfile,README.md,.env.example --template=django-react-boilerplate/boilerplate.zip -
Vanessa Barreiros created this gist
Jan 10, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ #!/bin/bash echo hello