Steps with explanations to set up a server using:
- Virtualenv
- Virtualenvwrapper
- Django
- Gunicorn
| <?php | |
| $eventName = $modx->event->name; | |
| switch($eventName) { | |
| case 'OnDocFormPrerender': | |
| // Для ресурсов с индетификатором шаблона 2 | |
| // а также для всех новых ресурсов ( $resource == null ) | |
| if( $resource && $resource->get('template') == 2 || !$resource){ | |
| $modx->regClientStartupHTMLBlock('<script> | |
| Ext.onReady(function() { | |
| # UPDATED 17 February 2019 | |
| # Redirect all HTTP traffic to HTTPS | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name www.domain.com domain.com; | |
| return 301 https://$host$request_uri; | |
| } | |
| # SSL configuration |
| -- Get Max ID from table | |
| SELECT MAX(id) FROM table; | |
| -- Get Next ID from table | |
| SELECT nextval('table_id_seq'); | |
| -- Set Next ID Value to MAX ID | |
| SELECT setval('table_id_seq', (SELECT MAX(id) FROM table)); |
| To change a field name in django 1.7+ | |
| 1. Edit the field name in the model (but remember the old field name: you need it for step 3!) | |
| 2. Create an empty migration | |
| $ python manage.py makemigrations --empty myApp | |
| 3. Edit the empty migration (it's in the migrations folder in your app folder, and will be the most recent migration) by adding | |
| migrations.RenameField('MyModel', 'old_field_name', 'new_field_name'), | |
| to the operations list. |
| <?php | |
| /** | |
| * ============================================================================= | |
| * AntiShell - Скрипт для котроля за изменениями в файлах на сайте. | |
| * ============================================================================= | |
| * Автор: Sander | |
| * URL: http://sandev.pro/ | |
| * ICQ: 404-037-556 | |
| * email: olalod@mail.ru | |
| * ----------------------------------------------------------------------------- |
| #!flask/bin/python | |
| from flask import Flask, jsonify, abort, request, make_response, url_for | |
| from flask_httpauth import HTTPBasicAuth | |
| app = Flask(__name__, static_url_path = "") | |
| auth = HTTPBasicAuth() | |
| @auth.get_password | |
| def get_password(username): | |
| if username == 'miguel': |