adding comment in sc

This commit is contained in:
myvault 2018-11-26 10:40:59 +02:00
parent 3e04944c3a
commit 25d86c4587
2 changed files with 7 additions and 5 deletions

View File

@ -1,13 +1,13 @@
{
"project_name": "My Awesome Project",
"project_name": "ma project",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"venv_name": "{{cookiecutter.project_slug}}_venv",
"database_user":"{{cookiecutter.project_slug}}_user",
"database_user_password":"password",
"description": "Behold My Awesome Project!",
"author_name": "Mohand Ahmad",
"description": "Behold ... :)",
"author_name": "Mohandoz",
"domain_name": "example.com",
"email": "{{ cookiecutter.author_name.lower()|replace(' ', '-') }}@example.com",
"email": "vaultofpython@outlook.com",
"version": "0.1.0",
"open_source_license": [
"MIT",

View File

@ -1,4 +1,6 @@
git rm -r --cached .
git add -A
git commit -am 'Removing ignored files'
echo "Enter comment"
read comment
git commit -am $comment
git push