From 12b0124bfb5e2ede00bd519e2d5490a8af8e008c Mon Sep 17 00:00:00 2001 From: ser3n1ty <36878537+cgnetsec@users.noreply.github.com> Date: Wed, 8 May 2024 20:07:56 -0700 Subject: [PATCH] Update README.md --- README.md | 99 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 89 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43ec166..b4656fa 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,17 @@ Recommended Tools: Chocolatey (https://chocolatey.org/install) ## Required Tools: -Golang -Node: 18.3.0 -npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) +- Golang +- Node: **18.3.0** +- npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) ## Installation: Once you have all the prerequisites you will need to setup a database. There are tons of database services you can choose from: -mysql - [getting started](https://dev.mysql.com/doc/mysql-getting-started/en/) -mariadb - [getting started](https://mariadb.com/get-started-with-mariadb/) -etc +- mysql - [getting started](https://dev.mysql.com/doc/mysql-getting-started/en/) +- mariadb - [getting started](https://mariadb.com/get-started-with-mariadb/) +- etc I went with MySQL. Once the database is setup, make sure that you can authenticate to the database. After being able to login to the database, create a database/schema called pokeroguedb. @@ -28,7 +28,7 @@ Select it as the default database and then run the sql queries from sqlqueries.s Edit the following files: ### rogueserver.go:34 -Change the 'false' after "debug" to 'true'. This will resolve CORS issues that many users have been having while trying to spin up their own servers. +Change the 'false' after "debug" to 'true'. This will resolve CORS issues that many users have been having while trying to spin up their own servers. ### rogueserver.go:37 Change the default port if you need to, I set it to 8001. @@ -42,14 +42,14 @@ Replace both URLs (one on each line) with the local API server address from rogu Now that all of the files are configured: start up powershell as administrator (or save the following as a ps1): ``` powershell -ep bypass -cd C:\server\location\ +cd C:\api\server\location\ go run . ``` Then in another run this the first time, then remove the npm install if you plan on running this as a powershell script in the future: ``` powershell -ep bypass -cd C:\server\location\ +cd C:\rogue\server\location\ npm install npm run start ``` @@ -66,13 +66,14 @@ I setup caddy and would recommend using it as a reverse proxy. [caddy installation](https://caddyserver.com/docs/install) once its installed setup a config file for caddy: +``` pokerogue.exampledomain.com { reverse_proxy localhost:8000 } pokeapi.exampledomain.com { reverse_proxy localhost:8001 } - +``` Preferably set up caddy as a service from [here.](https://caddyserver.com/docs/running) Once this is good to go, take your API url (https://pokeapi.exampledomain.com) and paste it on @@ -82,3 +83,81 @@ in place of the previous 0.0.0.0:8001 address Make sure that both 8000 and 8001 are portforwarded on your router. Test that the server's game and game authentication works from other machines both in and outside of the network. Once this is complete, enjoy! + +## Linux +## Required Tools: +- Golang +- Node: **18.3.0** +- npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) + +## Installation: + +Once you have all the prerequisites you will need to setup a database. +There are tons of database services you can choose from: +- mysql - [getting started](https://dev.mysql.com/doc/mysql-getting-started/en/) +- mariadb - [getting started](https://mariadb.com/get-started-with-mariadb/) +- etc + +I went with MySQL. Once the database is setup, make sure that you can authenticate to the database. +After being able to login to the database, create a database/schema called pokeroguedb. +Select it as the default database and then run the sql queries from sqlqueries.sql. You should now be able to see all of the empty tables. + +Edit the following files: +### rogueserver.go:34 +Change the 'false' after "debug" to 'true'. This will resolve CORS issues that many users have been having while trying to spin up their own servers. + +### rogueserver.go:37 +Change the default port if you need to, I set it to 8001. + +### rogueserver.go:39-43 +Make sure that the credentials that you tested to login to the database are put in here. + +### src/utils.ts:224-225 (in pokerogue) +Replace both URLs (one on each line) with the local API server address from rogueserver.go (0.0.0.0:8001) (or whatever port you picked) + +Now that all of the files are configured: start up powershell as administrator (or save the following as a ps1): +``` + +cd C:\api\server\location\ +go run . +``` + +Then in another run this the first time, then remove the npm install if you plan on running this as a powershell script in the future: +``` +powershell -ep bypass +cd C:\rogue\server\location\ +npm install +npm run start +``` + +You will need to allow the port youre running the API (8001) on and port 8000 to accept inbound connections through the windows advanced firewall. + +This should allow you to reach the game from other computers on the same network. + +## Tying to a Domain + +If you want to tie it to a domain like I did and make it publicly accessible, there is some extra work to be done. + +I setup caddy and would recommend using it as a reverse proxy. +[caddy installation](https://caddyserver.com/docs/install) +once its installed setup a config file for caddy: + +``` +pokerogue.exampledomain.com { + reverse_proxy localhost:8000 +} +pokeapi.exampledomain.com { + reverse_proxy localhost:8001 +} +``` +Preferably set up caddy as a service from [here.](https://caddyserver.com/docs/running) + +Once this is good to go, take your API url (https://pokeapi.exampledomain.com) and paste it on +### src/utils.ts:224-225 +in place of the previous 0.0.0.0:8001 address + +Make sure that both 8000 and 8001 are portforwarded on your router. + +Test that the server's game and game authentication works from other machines both in and outside of the network. Once this is complete, enjoy! + +