From 7521e21fa08e096a96fb478bc68b85c046e38e71 Mon Sep 17 00:00:00 2001 From: Brent <75487564+Brentdbr@users.noreply.github.com> Date: Tue, 31 Mar 2026 20:28:01 +0200 Subject: [PATCH] Update README with database setup instructions Added instructions for using pgAdmin4 to create the database and clarified steps for configuring the application. --- README.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8bea0947d..487a605ab 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ Pick one of two installation methods, then continue to [Quest & Scenario Files]( createdb -U postgres erupe ``` + Alternatively, when using pgAdmin4, right click the PostgreSQL version listed under "Servers" and click "Create", then name the database "erupe" and press Save. + The server will automatically apply all schema migrations on first startup. 3. Copy and edit the config: @@ -32,9 +34,38 @@ Pick one of two installation methods, then continue to [Quest & Scenario Files]( # Edit config.json with your database credentials ``` -4. Download [quest/scenario files](#quest--scenario-files) and extract them to `bin/` + If you're using File Explorer or the likes, rename or create a copy of `config.example.json` titled `config.json` and fill it out with your database credentials. -5. Run: `./erupe-ce` +4. Download [quest/scenario files](#quest--scenario-files) and extract them to `bin/`. + + It should look as follows: + ``` + bin + ├───events + │ ├───Campaign + │ ├───Collab + │ ├───Custom Quests + │ ├───Daily + │ ├───Diva Defense + │ ├───G Event + │ ├───HR Event + │ ├───Musou + │ ├───Raviente + │ ├───Series + │ ├───Special Event & April Fools + │ └───Zenith + ├───quests + ├───scenarios + └───rengoku_data.bin + ``` + +7. Run the server: + + On Linux, open the Terminal in the folder containing Erupe and run: `./erupe-ce`. + + On Windows, simply open the file titled `erupe.exe`. + + Alternatively, open the Command Prompt (cmd) in the folder containing Erupe and run: `erupe`. ### Option B: From Source