.env.development 595 B

12345678910111213141516171819202122
  1. BROWSER=firefox
  2. // 1. Game server
  3. VUE_APP_SERVER_PORT=2610
  4. // a. If you want to test app with local server (npm run server-dev) :
  5. VUE_APP_SERVER_HOST="localhost"
  6. // b. If you want to test app directly with running server online :
  7. //VUE_APP_SERVER_HOST="149.91.81.94"
  8. // 2. Game DB (if "localhost" selected above)
  9. // a. If MariaDB installed on local computer use for dev :
  10. //DB="localhost"
  11. //DB_NAME="twelve_heroes"
  12. // b. If not, for DEV use test database : (can be managed at http://149.91.81.94:1990/phpmyadmin/)
  13. DB="149.91.81.94"
  14. DB_PORT=1986
  15. DB_NAME="test_twelve_heroes"