GithubHelp home page GithubHelp logo

hartl3y94 / client-manager Goto Github PK

View Code? Open in Web Editor NEW

This project forked from leandrocunha526/client-manager

0.0 0.0 0.0 42 KB

License: BSD 3-Clause "New" or "Revised" License

Python 65.21% HTML 32.49% CSS 2.30%

client-manager's Introduction

Django 2.2 LTS Project

Django CI FOSSA Status

Development project with Django 2.2 LTS using design pattern MVT (Model, View and Template) to course.

Features

  • Admin: One of the most powerful parts of Django is its automatic admin interface. It reads metadata in your models to provide a powerful and production-ready interface that content producers can immediately use to start managing content on your site. It’s easy to set up and provides many hooks for customization.
  • Auth: Django comes with a full-featured and secure authentication system. It handles user accounts, groups, permissions and cookie-based user sessions. This lets you easily build sites that allow users to create accounts and safely log in/out.
  • URLs patterns and views: A clean, elegant URL scheme is an important detail in a high-quality web application. Django encourages beautiful URL design and doesn’t put any cruft in URLs, like .php or .asp. To design URLs for an application, you create a Python module called a URLconf. Like a table of contents for your app, it contains a simple mapping between URL patterns and your views.
  • Forms: Django provides a powerful form library that handles rendering forms as HTML, validating user-submitted data, and converting that data to native Python types. Django also provides a way to generate forms from your existing models and use those forms to create and update data.
  • ORM: Define your data models entirely in Python. You get a rich, dynamic database-access API for free but you can still write SQL if needed.
  • Templates: Django’s template language is designed to strike a balance between power and ease. It’s designed to feel comfortable and easy-to-learn to those used to working with HTML, like designers and front-end developers. But it is also flexible and highly extensible, allowing developers to augment the template language as needed.
  • Models: A model is the single, definitive source of information about your data. It contains the essential fields and behaviors of the data you’re storing. Generally, each model maps to a single database table.
  • Internationalization: Django offers full support for translating text into different languages, plus locale-specific formatting of dates, times, numbers, and time zones. It lets developers and template authors specify which parts of their apps should be translated or formatted for local languages and cultures, and it uses these hooks to localize web applications for particular users according to their preferences.

How it works

Django

To run

Create a virtualenv environment

Install in Debian based distributions

apt install python3-pip virtualenv

Create virtualenv

virtualenv -p python3 venv

Set virtualenv environment

. venv/bin/activate

Install dependencies with pip

pip install -r requirements.txt

Migrate database

Make migrations

python3 manage.py makemigrations

Run migrate

python manage.py migrate

Run server

python manage.py runserver

Home: http://localhost:8000

Admin: http://localhost:8000/admin

Requirements

  • Python 3.5 (see release note) or higher (3.9 as of 2.2.17)
  • Django 2.2 - Release Note
  • Bootstrap 4
  • Virtualenv
  • SQL Lite Browser (project uses sqlite3)

See requirements.txt

Docs

License

FOSSA Status

client-manager's People

Contributors

fossabot avatar leandrocunha526 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.