Remove obsolete text for devs + fix link markdown

This commit is contained in:
Condorra 2023-12-30 22:31:33 +11:00
parent d654a09557
commit a27a193b97

View File

@ -46,7 +46,7 @@ the LICENSE file) as the other code in the repository you are contributing to.
## Setting up a blastmud development environment ## Setting up a blastmud development environment
* Check it out locally with git. `git clone https://git.blastmud.org/blasthavers/blastmud.git`. * Check it out locally with git. `git clone https://git.blastmud.org/blasthavers/blastmud.git`.
* Ensure you have Rust installed. Visit [https://rustup.rs/] for help getting started. * Ensure you have Rust installed. Visit [https://rustup.rs/](https://rustup.rs/) for help getting started.
* Run `cargo test && cargo build` to test and install the code. * Run `cargo test && cargo build` to test and install the code.
* Setup postgresql. See [the Postgres docs](https://www.postgresql.org/docs/current/tutorial-install.html) for help. Create a postgresql database (in these instructions, I assume you call it blast) and user (called `blast` in these instructions as well) for Blastmud. * Setup postgresql. See [the Postgres docs](https://www.postgresql.org/docs/current/tutorial-install.html) for help. Create a postgresql database (in these instructions, I assume you call it blast) and user (called `blast` in these instructions as well) for Blastmud.
* Run `psql -d template1 <schema/schema.sql` as a user with access to create databases. * Run `psql -d template1 <schema/schema.sql` as a user with access to create databases.
@ -54,7 +54,6 @@ the LICENSE file) as the other code in the repository you are contributing to.
* Diff the blast DB from the temporary blast_schemaonly DB with `migra "postgres:///blast" "postgres:///blast_schemaonly" > /tmp/update.sql` * Diff the blast DB from the temporary blast_schemaonly DB with `migra "postgres:///blast" "postgres:///blast_schemaonly" > /tmp/update.sql`
* Check `/tmp/update.sql` and if it looks good, apply it with `psql -U blast -d blast &lt/tmp/update.sql` * Check `/tmp/update.sql` and if it looks good, apply it with `psql -U blast -d blast &lt/tmp/update.sql`
* Create a config directory under the blastmud directory you checked out, and put a listener.conf and gameserver.conf in it, with the content below. Also make a run directory under config. * Create a config directory under the blastmud directory you checked out, and put a listener.conf and gameserver.conf in it, with the content below. Also make a run directory under config.
* Email [staff@blastmud.org](mailto:staff@blastmud.org) and ask for a personal age-verification.yml file. You must provide your decade of birth if it is 90s or earlier. If you were born in the 21st century and didn't turn 18 this year, you must provide your year of birth. If you turned 18 this year but not this month, you must provide your month and year of birth. If you turned 18 this month, you must provide your full birth date in the email. Your personal age-verification.yml file must not be published on the Internet or shared with anyone else. Put age-verification.yml in the same config directory with the other files.
* From the config directory, run `../target/debug/blastmud_listener`. In another tab, run `../target/debug/blastmud_game`. * From the config directory, run `../target/debug/blastmud_listener`. In another tab, run `../target/debug/blastmud_game`.
* Connect to port 1234 on localhost to test it out locally. * Connect to port 1234 on localhost to test it out locally.