mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-10-31 18:52:29 +00:00
Merge branch 'master' of github.com:LeCoupa/awesome-cheatsheets
This commit is contained in:
commit
ba836197c6
@ -48,3 +48,5 @@ django-admin startapp <Appname> # create a new django application with
|
|||||||
django-admin migrate # synchronize the database state with your current state project models and migrations
|
django-admin migrate # synchronize the database state with your current state project models and migrations
|
||||||
django-admin makemigrations # create new migrations to the database based on the changes detected in the models
|
django-admin makemigrations # create new migrations to the database based on the changes detected in the models
|
||||||
django-admin runserver # start the development webserver at 127.0.0.1 with the port 8000
|
django-admin runserver # start the development webserver at 127.0.0.1 with the port 8000
|
||||||
|
django-admin help # display usage information and a list of the commands provided by each application
|
||||||
|
django-admin version # display the current django version
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
<!-- Document Summary -->
|
<!-- Document Summary -->
|
||||||
|
|
||||||
|
<!DOCTYPE html> <!-- Tells the browser that HTML5 version of HTML to be recognized by the browser -->
|
||||||
<html></html> <!-- Indicates that the page is written in html -->
|
<html lang="en"></html> <!-- The HTML lang attribute is used to identify the language of text content on the web. This information helps search engines return language specific results, -->
|
||||||
<head></head> <!-- Contains Information specific to the page like title, styles and scripts -->
|
<head></head> <!-- Contains Information specific to the page like title, styles and scripts -->
|
||||||
<title></title> <!-- Title for the page that shows up in the browser title bar -->
|
<title></title> <!-- Title for the page that shows up in the browser title bar -->
|
||||||
<body></body> <!-- Content that the user will see -->
|
<body></body> <!-- Content that the user will see -->
|
||||||
|
Loading…
Reference in New Issue
Block a user