- Removed `COMMON_ERRORS.md` file to streamline documentation. - Added `Flask-Limiter` for rate limiting and `redis` for session management in `requirements.txt`. - Expanded `ROADMAP.md` to include completed security features and planned enhancements for version 2.2. - Enhanced `setup_myp.sh` for ultra-secure kiosk installation, including system hardening and security configurations. - Updated `app.py` to integrate CSRF protection and improved logging setup. - Refactored user model to include username and active status for better user management. - Improved job scheduler with uptime tracking and task management features. - Updated various templates for a more cohesive user interface and experience.
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
/// <reference types="node" />
|
|
|
|
declare namespace pathKey {
|
|
interface Options {
|
|
/**
|
|
Use a custom environment variables object. Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env).
|
|
*/
|
|
readonly env?: {[key: string]: string | undefined};
|
|
|
|
/**
|
|
Get the PATH key for a specific platform. Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform).
|
|
*/
|
|
readonly platform?: NodeJS.Platform;
|
|
}
|
|
}
|
|
|
|
declare const pathKey: {
|
|
/**
|
|
Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform.
|
|
|
|
@example
|
|
```
|
|
import pathKey = require('path-key');
|
|
|
|
const key = pathKey();
|
|
//=> 'PATH'
|
|
|
|
const PATH = process.env[key];
|
|
//=> '/usr/local/bin:/usr/bin:/bin'
|
|
```
|
|
*/
|
|
(options?: pathKey.Options): string;
|
|
|
|
// TODO: Remove this for the next major release, refactor the whole definition to:
|
|
// declare function pathKey(options?: pathKey.Options): string;
|
|
// export = pathKey;
|
|
default: typeof pathKey;
|
|
};
|
|
|
|
export = pathKey;
|