move register to auth path

This commit is contained in:
Huskydog9988
2025-03-23 21:08:08 -04:00
parent 1f309606c9
commit 57042892c4
2 changed files with 5 additions and 3 deletions

View File

@ -36,7 +36,9 @@ Your drop server should now be running. To register the admin user, navigate to
and fill in the required forms and fill in the required forms
### Adding a game ### Adding a game
To add a game to the drop library, do as follows: To add a game to the drop library, do as follows:
1. Ensure that the current user owns the library folder with `sudo chown -R $(id -u $(whoami)) library` 1. Ensure that the current user owns the library folder with `sudo chown -R $(id -u $(whoami)) library`
2. `cd library` 2. `cd library`
3. `mkdir <GAME_NAME>` with the name of the game which you would like to register 3. `mkdir <GAME_NAME>` with the name of the game which you would like to register
@ -73,7 +75,7 @@ Steps:
As part of the first-time bootstrap, Drop creates an invitation with the fixed id of 'admin'. So, to create an admin account, go to: As part of the first-time bootstrap, Drop creates an invitation with the fixed id of 'admin'. So, to create an admin account, go to:
http://localhost:3000/register?id=admin http://localhost:3000/auth/register?id=admin
## Contributing ## Contributing