.env.development 632 B

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