Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qbhy/hyperf-multi-env
hyperf 框架多 env 配置文件支持
https://github.com/qbhy/hyperf-multi-env
Last synced: about 1 month ago
JSON representation
hyperf 框架多 env 配置文件支持
- Host: GitHub
- URL: https://github.com/qbhy/hyperf-multi-env
- Owner: qbhy
- License: mit
- Created: 2020-06-18T13:31:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-27T10:18:19.000Z (11 months ago)
- Last Synced: 2024-04-29T13:40:59.703Z (8 months ago)
- Language: PHP
- Size: 21.5 KB
- Stars: 23
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hyperf-multi-env
hyperf 框架多 env 文件支持## 安装 - install
```bash
$ composer require qbhy/hyperf-multi-env
```## 使用 - usage
只需要启动的时候设置 APP_ENV 配置,扩展包就会自动根据 env 来查找 env 文件配置。比如 APP_ENV 为 `testing` 那么会加载 `.env.testing` 文件配置。
> `.env.testing` 没有的配置,还是会使用 `.env` 文件的配置来加载。所以建议 .env 放共有的配置。## 示例 - examples
* 通过 `.env` 配置
```dotenv
APP_ENV=local
```
* 命令行直接启动
```bash
$ export APP_ENV=production && php bin/hyperf.php start
```
> 有环境变量污染的可能性,请小心使用
* docker 启动
```bash
$ docker run --env APP_ENV=production -d -p 9501:9501 your-image
```
* phpunit
```xml
```hyperf学习交流请加QQ群: 873213948
https://github.com/qbhy/hyperf-multi-env
[email protected]