File tree 2 files changed +41
-0
lines changed
2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 32
32
33
33
- Implemented Traefik
34
34
- Added makefile for ease of use
35
+ - Updated for use on Linux and Windows
Original file line number Diff line number Diff line change
1
+ rem Example env.bat file.
2
+ rem
3
+ rem @package Apiopenstudio
4
+ rem @license This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
5
+ rem If a copy of the MPL was not distributed with this file,
6
+ rem You can obtain one at https://mozilla.org/MPL/2.0/.
7
+ rem @author john89 (https://gitlab.com/john89)
8
+ rem @copyright 2020-2030 Naala Pty Ltd
9
+ rem @link https://www.apiopenstudio.com
10
+
11
+ rem General
12
+ set APP_NAME = apiopenstudio
13
+ set DOMAIN = apiopenstudio.local
14
+ set SSL_CERT_DIR = ./config/certs
15
+ set PHP_VERSION = 8.2
16
+ set TRAEFIK_VERSION = 2.10
17
+
18
+ rem Proxy
19
+ set PROXY_SUBDOMAIN = traefik
20
+
21
+ rem Database
22
+ set MYSQL_HOST = apiopenstudio-db
23
+ set MYSQL_DATABASE = apiopenstudio
24
+ set MYSQL_USER = apiopenstudio
25
+ set MYSQL_PASSWORD = apiopenstudio
26
+ set MYSQL_ROOT_PASSWORD = apiopenstudio
27
+
28
+ rem API
29
+ set API_CODEBASE = C:\path\to\apiopenstudio
30
+ set API_SUBDOMAIN = api
31
+ set WITH_XDEBUG = false
32
+ set WITH_MEMCACHED = false
33
+ set WITH_REDIS = false
34
+
35
+ rem Admin
36
+ set ADMIN_CODEBASE = C:\path\to\apiopenstudio_admin_vue
37
+ set ADMIN_SUBDOMAIN = admin
38
+
39
+ rem PHPDoc
40
+ set PHPDOC_SUBDOMAIN = phpdoc
You can’t perform that action at this time.
0 commit comments