diff --git a/README.md b/README.md index 127fd7b..29ce392 100644 --- a/README.md +++ b/README.md @@ -81,9 +81,12 @@ Feel free to take a look. You might learn new things. They have been designed to
View cheatsheets -#### NoSQL +#### SQL - [MySQL](databases/mysql.sh) + +#### NoSQL + - [Redis](databases/redis.sh)
diff --git a/backend/django.py b/backend/django.py index b485c1e..efcb95b 100644 --- a/backend/django.py +++ b/backend/django.py @@ -106,5 +106,6 @@ django-admin version # display the current django version # 5. $ virtualenv venv # 6. $ source venv/bin/activate # 7. $ pip install django -# 8. $ django-admin startproject myproject -# 9. $ python manage.py runserver +# 8. $ django-admin startproject myproject +# 9. $ django-admin startapp myapp +# 10. $ python manage.py runserver diff --git a/languages/bash.sh b/languages/bash.sh index 18d7903..b7a1d22 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -508,6 +508,6 @@ On_Cyan='\033[46m' # Cyan On_White='\033[47m' # White # Example of usage -echo -e "${Green}This is GREEN text${Color_Off} and nornal text" +echo -e "${Green}This is GREEN text${Color_Off} and normal text" echo -e "${Red}${On_White}This is Red test on White background${Color_Off}" # option -e is mandatory, it enable interpretation of backslash escapes