Code Monkey home page Code Monkey logo

bridgehospice_python_django_archive's Introduction

Environments

Development

.dev-db.env POSTGRES_DB=postgres POSTGRES_USER=postgres POSTGRES_PASSWORD=

.dev-web.env DEBUG=True SECRET_KEY= ALLOWED_HOSTS=localhost, 127.0.0.1, 0.0.0.0, [::1], example.com

PG_HOST=bh_db_dev
PG_DATABASE_NAME=postgres
PG_USERNAME=postgres
PG_PASSWORD=
PG_PORT=5432

CSRF_COOKIE_SECURE=False
SESSION_COOKIE_SECURE=False
Production

.prod.db.env POSTGRES_DB=postgres POSTGRES_USER=postgres POSTGRES_PASSWORD=

.prod.web.env DEBUG=False SECRET_KEY= ALLOWED_HOSTS=localhost, 127.0.0.1, [::1], example.com

PG_HOST=bh_db_prod
PG_DATABASE_NAME=postgres
PG_USERNAME=postgres
PG_PASSWORD=
PG_PORT=5432

CSRF_COOKIE_SECURE=True
SESSION_COOKIE_SECURE=True
Commands

docker-compose -f docker-compose-dev.yml up --build -d docker-compose -f docker-compose-dev.yml stop docker volume inspect bh_data_dev docker volume create bh_data_dev docker volume rm bh_data_dev docker-compose -f docker-compose-prod.yml up --build -d docker-compose -f docker-compose-prod.yml stop docker volume inspect bh_data_prod docker volume create bh_data_prod docker volume rm bh_data_prod

Permission Groups

request.User.groups.add(perm_group)
    e.g. perm-group = (parishioner, parish)
request.User.has_perm('appname.action_model')
    e.g. dashboard.view_mass, _.add_mass, _.del_mass, _.change_mass
'templates' use django perms
    {% if perms.myapp.can_view_something %}{% endif %}

bridgehospice_python_django_archive's People

Contributors

n-ickjones 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.