|
|
(19 intermediate revisions by the same user not shown) |
Line 56: |
Line 56: |
| | | |
| [[Creating a virtual environment in Visual Studio]] | | [[Creating a virtual environment in Visual Studio]] |
− |
| |
− | =Web Apps=
| |
− | Web apps are cross platform apps which are used via a browser. This allows you to create a single app to cover platforms such has Windows, Linux, iOS, Android, and so on. These essentially have a server program, which when you start it will allow you to access your app via '''<nowiki>http://localhost:8000</nowiki>''' or '''<nowiki>http://127.0.0.1:8000</nowiki>'''. The exact port number may vary, but the server will output the correct link to use.
| |
− |
| |
− | ==Django==
| |
− | [[Creating a Django Web App]]
| |
− |
| |
− | [[Django management program]]
| |
− |
| |
− | [[Creating the Home page in Django]]
| |
− |
| |
− | [[Set up Login System in Django]]
| |
− |
| |
− | [[Create a sign up page in Django]]
| |
− |
| |
− | [[Create account edit page in Django]]
| |
− |
| |
− | [[Enforce login required for page]]
| |
− |
| |
− | [[Creating a Model in Django]]
| |
− |
| |
− | [[Display data from a model in django]]
| |
− |
| |
− | [[Add data into a model in Django]]
| |
− |
| |
− | [[Delete data from a model in Django]]
| |
− |
| |
− | [[Relating models in Django, ie Primary key to Foreign Key]]
| |
− |
| |
− | [[Enforcing unique model entries]]
| |
− |
| |
− | [[Passing an integer through the url to make a product page]]
| |
− |
| |
− | [[Images in models and uploading images]]
| |
− |
| |
− | [[Fully OOP with generic views]]
| |
− |
| |
− | ==Flask==
| |
− | [[Creating a Flask Web App]]
| |
− |
| |
− | [[Parts of a Flask Web App]]
| |
− |
| |
− | [[Connecting MySQL to Flask Web App]]
| |