nocobase/docs/en-US/api/env.md

237 lines
3.9 KiB
Markdown
Raw Normal View History

2022-12-23 08:30:21 +00:00
# Environment Variables
2022-12-23 08:30:21 +00:00
## Global Environment Variables
2022-12-21 02:14:32 +00:00
Saved in the `.env` file
### APP_ENV
2022-12-23 08:30:21 +00:00
Application environment, default is `development`, options include
2022-12-21 02:14:32 +00:00
- `production` production environment
2022-12-23 08:30:21 +00:00
- `development` development environment
```bash
APP_ENV=production
```
### APP_HOST
2022-12-23 08:30:21 +00:00
Application host, default is `0.0.0.0`
```bash
APP_HOST=192.168.3.154
```
### APP_PORT
2022-12-23 08:30:21 +00:00
Application port, default is `13000`
```bash
APP_PORT=13000
```
### APP_KEY
2022-12-21 02:14:32 +00:00
Secret key, for scenarios such as jwt
```bash
APP_KEY=app-key-test
```
### API_BASE_PATH
2022-12-23 08:30:21 +00:00
NocoBase API address prefix, default is `/api/`
```bash
API_BASE_PATH=/api/
```
### PLUGIN_PACKAGE_PREFIX
2022-12-23 08:30:21 +00:00
Plugin package prefix, default is `@nocobase/plugin-,@nocobase/preset-`
2022-12-23 08:30:21 +00:00
For example, add plugin `hello` into project `my-nocobase-app`, the plugin package name is `@my-nocobase-app/plugin-hello`.
2022-12-23 08:30:21 +00:00
PLUGIN_PACKAGE_PREFIX is configured as follows:
```bash
2022-12-21 02:14:32 +00:00
PLUGIN_PACKAGE_PREFIX=@nocobase/plugin-,@nocobase-preset-,@my-nocobase-app/plugin-
```
2022-12-23 08:30:21 +00:00
The correspondence between plugin name and package name is:
2022-12-21 02:14:32 +00:00
- `users` plugin package name is `@nocobase/plugin-users`
- `nocobase` plugin package name is `@nocobase/preset-nocobase`
2022-12-23 08:30:21 +00:00
- `hello` plugin package name is `@my-nocobase-app/plugin-hello`
### DB_DIALECT
2022-12-23 08:30:21 +00:00
Database type, default is `sqlite`, options include
- `sqlite`
- `mysql`
- `postgres`
```bash
DB_DIALECT=mysql
```
### DB_STORAGE
2022-12-23 08:30:21 +00:00
Database file path (required when using a SQLite database)
```bash
2022-12-21 02:14:32 +00:00
### Relative path
DB_HOST=storage/db/nocobase.db
2022-12-21 02:14:32 +00:00
# Absolute path
DB_HOST=/your/path/nocobase.db
```
### DB_HOST
2022-12-21 02:14:32 +00:00
Database host (required when using MySQL or PostgreSQL databases)
2022-12-23 08:30:21 +00:00
Default is `localhost`
```bash
DB_HOST=localhost
```
### DB_PORT
2022-12-21 02:14:32 +00:00
Database port (required when using MySQL or PostgreSQL databases)
2022-12-23 08:30:21 +00:00
- Default port of MySQL is 3306
- Default port of PostgreSQL is 5432
```bash
DB_PORT=3306
```
### DB_DATABASE
2022-12-21 02:14:32 +00:00
Database name (required when using MySQL or PostgreSQL databases)
```bash
DB_DATABASE=nocobase
```
### DB_USER
2022-12-21 02:14:32 +00:00
Database user (required when using MySQL or PostgreSQL databases)
```bash
DB_USER=nocobase
```
### DB_PASSWORD
2022-12-23 08:30:21 +00:00
Database password (required when using MySQL or PostgreSQL databases)
```bash
DB_PASSWORD=nocobase
```
### DB_TABLE_PREFIX
2022-12-21 02:14:32 +00:00
Data table prefix
```bash
DB_TABLE_PREFIX=nocobase_
```
### DB_LOGGING
2022-12-23 08:30:21 +00:00
Database log switch, default is `off`, options include
2022-12-21 02:14:32 +00:00
- `on` on
- `off` off
```bash
DB_LOGGING=on
```
2022-11-13 15:00:59 +00:00
### LOGGER_TRANSPORT
2022-12-23 08:30:21 +00:00
Log transport, default is `console,dailyRotateFile`, options include
2022-11-13 15:00:59 +00:00
- `console`
- `dailyRotateFile`
### DAILY_ROTATE_FILE_DIRNAME
2022-12-23 08:30:21 +00:00
Path to save `dailyRotateFile` logs, default is `storage/logs`
2022-11-13 15:00:59 +00:00
2022-12-23 08:30:21 +00:00
## Temporary Environment Variables
2022-12-23 08:30:21 +00:00
The installation of NocoBase can be assited by setting temporary environment variables, such as:
```bash
yarn cross-env \
INIT_APP_LANG=zh-CN \
INIT_ROOT_EMAIL=demo@nocobase.com \
INIT_ROOT_PASSWORD=admin123 \
INIT_ROOT_NICKNAME="Super Admin" \
nocobase install
2022-12-21 02:14:32 +00:00
# Equivalent to
yarn nocobase install \
2022-12-21 02:14:32 +00:00
--lang=zh-CN \
--root-email=demo@nocobase.com \
--root-password=admin123 \
--root-nickname="Super Admin"
2022-12-21 02:14:32 +00:00
# Equivalent to
yarn nocobase install -l zh-CN -e demo@nocobase.com -p admin123 -n "Super Admin"
```
### INIT_APP_LANG
2022-12-23 08:30:21 +00:00
Language at the time of installation, default is `en-US`, options include
2022-12-23 08:30:21 +00:00
- `en-US` English
- `zh-CN` Chinese (Simplified)
```bash
yarn cross-env \
INIT_APP_LANG=zh-CN \
nocobase install
```
### INIT_ROOT_EMAIL
2022-12-21 02:14:32 +00:00
Root user mailbox
```bash
yarn cross-env \
INIT_APP_LANG=zh-CN \
INIT_ROOT_EMAIL=demo@nocobase.com \
nocobase install
```
### INIT_ROOT_PASSWORD
2022-12-21 02:14:32 +00:00
Root user password
```bash
yarn cross-env \
INIT_APP_LANG=zh-CN \
INIT_ROOT_EMAIL=demo@nocobase.com \
INIT_ROOT_PASSWORD=admin123 \
nocobase install
```
### INIT_ROOT_NICKNAME
2022-12-21 02:14:32 +00:00
Root user nickname
```bash
yarn cross-env \
INIT_APP_LANG=zh-CN \
INIT_ROOT_EMAIL=demo@nocobase.com \
INIT_ROOT_PASSWORD=admin123 \
INIT_ROOT_NICKNAME="Super Admin" \
nocobase install
```