The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
- Image from https://www.archlinux.org/
[ | |
"abrasive", | |
"acacia", | |
"acid", | |
"acid driven", | |
"aggressive", | |
"airy", | |
"alcohol", | |
"allspice", | |
"almond", |
CREATE TRIGGER clear_deleted_at BEFORE | |
UPDATE | |
ON todo FOR EACH ROW | |
WHEN ( | |
NOT NEW.deleted | |
AND OLD.deleted IS DISTINCT | |
FROM | |
NEW.deleted | |
) EXECUTE PROCEDURE trigger_clear_deleted_at(); |
The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
{ | |
"extends": ["eslint:recommended", "eslint-config-prettier"], | |
"parserOptions": { "ecmaVersion": 2018 }, | |
"rules": { | |
"no-console": "off", | |
"prefer-const": [ | |
"error", | |
{ | |
"destructuring": "any", | |
"ignoreReadBeforeAssign": false |
{ | |
"scripts": { | |
"tslint": "tslint -c tslint.json -p tsconfig.json" | |
}, | |
"devDependencies": { | |
"tslint": "^5.12.1" | |
} | |
} |
{ | |
"presets": ["@babel/env", "@babel/preset-typescript"], | |
"plugins": [ | |
"@babel/proposal-class-properties", | |
"@babel/proposal-object-rest-spread" | |
] | |
} |
# nginx Configuration File | |
# http://wiki.nginx.org/Configuration | |
# Run as a less privileged user for security reasons. | |
user nginx; | |
# How many worker threads to run; | |
# "auto" sets it to the number of CPU cores available in the system, and | |
# offers the best performance. Don't set it higher than the number of CPU | |
# cores if changing this parameter. |