All Projects → hackersandslackers → django-views-tutorial

hackersandslackers / django-views-tutorial

Licence: MIT license
🚀 ✅ Function and class-based Django view repository.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to django-views-tutorial

hornbill
基于uri的 node mvc框架,适用于前后端分离服务
Stars: ✭ 22 (+15.79%)
Mutual labels:  mvc
sirius
Modern coffeescript/javascript framework
Stars: ✭ 20 (+5.26%)
Mutual labels:  mvc
ExpressPHP-V1
✨ ExpressPHP V1是一个极简的 web 开发MVC框架,和ThinkPHP5一样现代化,比CodeIgniter还要轻量级,真正突破框架限制,让你感受到自由,同时兼顾高性能、低学习成本。
Stars: ✭ 13 (-31.58%)
Mutual labels:  mvc
faces
Jakarta Faces
Stars: ✭ 44 (+131.58%)
Mutual labels:  mvc
estore
Electronic Store Application - A web based application developed using PHP and Driven by MySQL Database
Stars: ✭ 48 (+152.63%)
Mutual labels:  mvc
puremvc-swift-multicore-framework
PureMVC MultiCore Framework for Swift
Stars: ✭ 17 (-10.53%)
Mutual labels:  mvc
core
Enterprise Grade #NodeJS Platform implementing Industry Standards & Patterns in order to provide Connectivity, Stability, High-Availability and High-Performance
Stars: ✭ 54 (+184.21%)
Mutual labels:  mvc
aquiver
🚀 The aquifer is a java web framework based on Java8 and netty
Stars: ✭ 38 (+100%)
Mutual labels:  mvc
easy-gin
一套基于 Gin 框架的 MVC 脚手架,使用 govendor 包管理
Stars: ✭ 74 (+289.47%)
Mutual labels:  mvc
wulaphp
一个有点复杂的PHP框架!
Stars: ✭ 26 (+36.84%)
Mutual labels:  mvc
DNTCommon.Web.Core
DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core 3.x applications.
Stars: ✭ 117 (+515.79%)
Mutual labels:  mvc
app container
a little little framework 一个简单的SPA框架, 按照自己对SPA的交互理解制作~
Stars: ✭ 19 (+0%)
Mutual labels:  mvc
fluentassertions.mvc
Fluent Assertions extensions for ASP.NET MVC
Stars: ✭ 36 (+89.47%)
Mutual labels:  mvc
app
Aplus Framework App Project
Stars: ✭ 338 (+1678.95%)
Mutual labels:  mvc
Samples-ASP.NET-MVC-CSharp
ASP.NET MVC C# samples for Stimulsoft Reports.Web reporting tool.
Stars: ✭ 31 (+63.16%)
Mutual labels:  mvc
framework
A PHP framework for rapidly building web applications.
Stars: ✭ 48 (+152.63%)
Mutual labels:  mvc
dilovel
An advanced framework is written in PHP, a framework containing rich components such as middleware, orm, request management, template engine, elasticsearch, template engine, many modern frameworks have been written by adopting clean code principles completely written in accordance with PHP standards. like linux operating system ...All of control…
Stars: ✭ 38 (+100%)
Mutual labels:  mvc
view
Yii view rendering library
Stars: ✭ 42 (+121.05%)
Mutual labels:  mvc
PHP MVC LightweightFramework
【停更】PHP_MVC_API作为一个极其轻量级MVC&API开发框架,不断吸取参考了flight、phx、discuz、punbb等开源项目的优点,最终形成独具自己风格的快速开发框架。适合微小型项目,目前我主要用于服务端应用程序接口开发,提供API和移动APP进行数据交换。推荐使用https://github.com/phalapi/phalapi
Stars: ✭ 16 (-15.79%)
Mutual labels:  mvc
databind-js
A powerful and flexible MVC data binding library
Stars: ✭ 16 (-15.79%)
Mutual labels:  mvc

Django Views Tutorial

Python Django MySQLClient GitHub Last Commit GitHub Issues GitHub Stars GitHub Forks

Django Intro Tutorial

This repository contains source code for accompanying tutorial: https://hackersandslackers.com/creating-django-views/

A working demo of this source code is hosted here: https://django.hackersandslackers.app/

Installation

Installation via requirements.txt:

$ git clone https://github.com/hackersandslackers/django-views-tutorial.git
$ cd django-views-tutorial
$ python3 -m venv myenv
$ source myenv/bin/activate
$ pip3 install -r requirements.txt
$ python3 manage.py runserver

Installation via Pipenv:

$ git clone https://github.com/hackersandslackers/django-views-tutorial.git
$ cd django-views-tutorial
$ pipenv shell
$ pipenv update
$ python3 manage.py runserver

Installation via Poetry:

$ git clone https://github.com/hackersandslackers/django-views-tutorial.git
$ cd django-views-tutorial
$ poetry shell
$ poetry update
$ python3 manage.py runserver

Configuration

Configuration is handled by creating a django_views_tutorial/.env file (see .env.example for reference) Replace values with your own:

DEBUG=True
SECRET_KEY="yoursecretkey"
DJANGO_SETTINGS_MODULE="django_views_tutorial.settings"

DATABASE_ENGINE=django.db.backends.mysql
DATABASE_NAME=databasename
DATABASE_USER=username
DATABASE_PASSWORD=password
DATABASE_HOST=0.0.0.0
DATABASE_PORT=1234
DATABASE_CERTIFICATE="../creds/ca-certificate.crt" # (optional)

Hackers and Slackers tutorials are free of charge. If you found this tutorial helpful, a small donation would be greatly appreciated to keep us in business. All proceeds go towards coffees], and all coffee goes towards more content.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].