123456789101112131415161718192021222324 |
- BROWSER=firefox
- BABEL_ENV=debug
- NODE_ENV=development
- // 1. Game server
- VUE_APP_SERVER_PORT=2610
- // a. If you want to test app with local server (npm run server-dev) :
- VUE_APP_SERVER_HOST="localhost"
- // b. If you want to test app directly with running server online :
- //VUE_APP_SERVER_HOST="149.91.81.94"
- // 2. Game DB (if "localhost" selected above)
- // a. If MariaDB installed on local computer use for dev :
- //DB="localhost"
- //DB_NAME="twelve_heroes"
- // b. If not, for DEV use test database : (can be managed at http://149.91.81.94:1990/phpmyadmin/)
- DB="149.91.81.94"
- DB_PORT=1986
- DB_NAME="test_twelve_heroes"
|