не уверен правильно ли я вообще cделал?правильно
./manage.py runserver
и получить себе работающее приложение4. Какие еще есть способы? Как правильно организовать работу? Может быть есть лучшие практики (под разработку node.js).nvie.com/posts/a-successful-git-branching-model
import os
import sqlite3
db_filename = 'whatever.db'
schema = '''
CREATE TABLE users(
id INTEGER PRIMARY KEY autoincrement not null,
cid INTEGER,
lang INEGER default 1)
'''
cid = 12
db_is_new = not os.path.exists(db_filename)
with sqlite3.connect(db_filename) as conn:
if db_is_new:
conn.executescript(schema)
conn.execute("""
INSERT INTO users (cid, lang) VALUES (?, ?) """ ,
(cid, 0)
)
cursor = conn.cursor()
cursor.execute('select id, cid, lang from users')
for row in cursor.fetchall():
print(row)
print('update')
cursor.execute ("UPDATE users SET lang = 22 WHERE cid=?", (cid,))
print('after update')
cursor.execute('select id, cid, lang from users')
for row in cursor.fetchall():
print(row)
### case sensitive http user agent blocking ###
if ($http_user_agent ~ (Catall Spider|AcoiRobot) ) {
return 403;
}
### case insensitive http user agent blocking ###
if ($http_user_agent ~* (foo|bar) ) {
return 403;
}
map $http_via $is_not_ok {
default "0";
"~*squid" "1";
}
if ($is_not_ok) {
return 405;
}
apt install python-pil