| 12345678910111213141516171819202122 | BROWSER=firefox//    1. Game serverVUE_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=1986DB_NAME="test_twelve_heroes"
 |