.env 536 B

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