Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docu #1147

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Update docu #1147

wants to merge 3 commits into from

Conversation

ManuelAlonso1
Copy link
Collaborator

Motivation

Updated the Mirra backend setup documentation. Added detailed steps for installing Nix, Devenv, Protobuf, and dependencies for Elixir and JavaScript Protobuf, along with instructions to properly start the services. >

Created documentation for enabling disabled characters. Key steps include:

  • Adding the character name in CharactersManager.cs.
  • Activating the character in the configurator.
  • Enabling the character's portrait in Unity.
  • Setting up default skins in the backend if needed.

@ManuelAlonso1 ManuelAlonso1 added the documentation Improvements or additions to documentation label Apr 3, 2025
@ManuelAlonso1 ManuelAlonso1 self-assigned this Apr 3, 2025
```bash
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
```

The installer will ask you for the sudo password, and then print the details about what steps it will perform to install Nix. You have to accept this to proceed with the installation.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we remove this? Doesn't the installation ask you for super user (sudo) privileges? It's unsafe to enable sudo to a dependency we don't know, here we tell the user that it's normal for Nix to ask you for sudo privileges.


Make sure there weren't any errors during the installation and, if there are none, close the shell and start a new one.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is important in my opinion. We have to make sure the user reads the terminal instead of copy-pasting commands and closing then opening terminals without reading the output of the commands ran.


Make sure there weren't any errors during the installation and, if there are none, close the shell and start a new one.

To test if Nix generally works, just run GNU hello or any other package:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wouldn't delete this, a User may want to know what nixpkgs#hello is before running.

- **Devenv:**
## 2. Install Devenv

After installing Nix, run:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't mention devenv here. The following command has nothing to do with nix, it installs devenv.
I think the old message was ok, we have to tell the user that:

  1. Nix MUST be installed before devenv (devenv depends on nix)
  2. the following command installs devenv.

```bash
nix-env -if https://install.devenv.sh/latest
```

For devenv to manage caches for you, add yourself to trusted-users in nix conf:
Then, add yourself as a trusted user in the Nix configuration:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why remove the caches explanation? It's a good habit to explain the user why they should follow the commands we state here.


Then, open:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why? This is not mandatory. It's just to play a game.

Comment on lines +110 to 121
To access the Elixir console:

If you want to have access to the Elixir console, instead do:
```bash
devenv shell postgres
# Then in another terminal:
```

In another terminal, run:

```bash
devenv shell
make start
```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is an alternative to devenv up, I liked the former comment where the user can know he can either do devenv up or devenv shell postgress + devenv shell && make start in separate terminals.

devenv shell
make start
```
_Note you need to have ran `devenv up` earlier._

⚠️ **Note:** Make sure you’ve run `devenv up` before these commands.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
⚠️ **Note:** Make sure you’ve run `devenv up` before these commands.
⚠️ **Note:** Make sure you’ve run `devenv up` at least once before executing these commands.

Comment on lines +38 to +46
Its mandatory to activate a character to have a basic skin assigned, for example, if you want to add Uren you should add this this lines of code:

- Set `active` to `true` in `seeds.exs`
charactername_params = %{
name: "valtimer",
active: true,
...
...
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few things here:

  • This README is for the Configurator app. It's documentation to add/edit characters via the forms in localhost:4100, not the seeds.
  • You can either add a character via Configurator or by code using seeds.
    The active param is the one that enables and disables characters, but it's already been said above:
  • Change it's active value to enable/disable characters in game.
  • Also, you talk about Uren but the params are for Valtimer.

Comment on lines +48 to +67
- 4.2 Create a default skin (if needed)
charactername_basic_params = %{
is_default: true,
name: "Basic",
character_id: Enum.find(characters, fn c -> c.name == "charactername" end).id
}
- Add `charactername_basic_params` to the skins list
Find the **Insert skins** section and add the new character's basic skin:

Insert skins
[
h4ck_fenix_params,
h4ck_basic_params,
valtimer_frostimer_params,
valtimer_basic_params,
kenzu_black_lotus_params,
kenzu_basic_params,
otix_corrupt_underground,
otix_basic_params
]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we can replace all this by just saying that if you create a new character, you have to assign a default skin to it or it won't work, then show how to do it (like you do here).
Also, it would be nice to mention that this should be in the Configurator (again, these are Configurator's app docs), because now you can't create skins from it. If you add that, create an issue and link it here as well.

@Nico-Sanchez
Copy link
Collaborator

Key steps include:

Adding the character name in CharactersManager.cs.
Activating the character in the configurator.
Enabling the character's portrait in Unity.
Setting up default skins in the backend if needed.

Also please update your PR description, because the steps you mention doesn't apply to this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants