Skip to content

Commit e20ce32

Browse files
author
laughing_man77
committed
Added Missing bat file from last commit. Ref #8
1 parent 1a57d0b commit e20ce32

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ v1.0.1
3232

3333
- Implemented Traefik
3434
- Added makefile for ease of use
35+
- Updated for use on Linux and Windows

example.env.bat

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

0 commit comments

Comments
 (0)