Skip to content

Commit

Permalink
Change urls
Browse files Browse the repository at this point in the history
  • Loading branch information
ericgrandt committed Dec 31, 2023
1 parent 07ccce0 commit f55a6a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ title: Total Economy
email: your-email@example.com
description: >- # this means to ignore newlines until "baseurl:"
Documentation for the Bukkit/Spigot/Paper plugin Total Economy.
baseurl: "/TotalEconomyPaper" # the subpath of your site, e.g. /blog
baseurl: "/TotalEconomy" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: ""
github_username: ericgrandt
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ nav_order: 2
- [Spigot](https://www.spigotmc.org/)/[Paper](https://papermc.io/)
- [Vault](https://dev.bukkit.org/projects/vault)
- MySQL (>= 8) database
- Execute the SQL in [schema.sql](https://github.com/ericgrandt/TotalEconomyPaper/blob/master/src/main/resources/schema.sql) to setup your schema (NOTE: This will be automated in a future release)
- Execute the SQL in [schema.sql](https://github.com/ericgrandt/TotalEconomy/blob/master/src/main/resources/schema.sql) to setup your schema (NOTE: This will be automated in a future release)

## Step-by-step

1. Move the `TotalEconomy-x.y.z.jar` into the `plugins` folder
2. Start the server to generate the configuration file
- Optionally, create the configuration beforehand using [config.yml](https://github.com/ericgrandt/TotalEconomyPaper/blob/master/src/main/resources/config.yml) as a reference
- Optionally, create the configuration beforehand using [config.yml](https://github.com/ericgrandt/TotalEconomy/blob/master/src/main/resources/config.yml) as a reference
3. Update the configuration file with your database information
- For the database url, follow this structure: `jdbc:mysql://[host]:[port]/[database_name]`
4. Execute all the SQL in [resources/schema.sql](https://github.com/ericgrandt/TotalEconomyPaper/blob/master/src/main/resources/schema.sql) against the database you plan on using for Total Economy
4. Execute all the SQL in [resources/schema.sql](https://github.com/ericgrandt/TotalEconomy/blob/master/src/main/resources/schema.sql) against the database you plan on using for Total Economy
5. Restart the server
2 changes: 1 addition & 1 deletion docs/jobs/custom-jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ INSERT INTO te_job_reward (job_id, job_action_id, currency_id, material, money,
VALUES (YOUR_JOB_ID, TE_JOB_ACTION_ID, 1, 'stone', 0.10, 1);
```

For a list of supported job actions, either consult the rows in the database (especially if you need the `id`) or the [documentation](https://ericgrandt.github.io/TotalEconomyPaper/jobs/#job-action).
For a list of supported job actions, either consult the rows in the database (especially if you need the `id`) or the [documentation](https://ericgrandt.github.io/TotalEconomy/jobs/#job-action).

0 comments on commit f55a6a9

Please sign in to comment.