Reldens - Documentation
Go to websiteCheck our demo!Source GitHub
  • Documentation
  • What is Reldens?
  • Admin Panel
  • System Configuration
  • Contents creation
  • Customize your game
  • Demo server setup - Amazon Linux (2024)
  • Generators and import
  • Installation
  • Known issues
  • How to create a new Room/Scene?
  • Maps Wizard
  • System requirements
  • assets
    • object-sprite
    • player-sprite
    • skill-sprite
  • entities
    • Class Path
    • Item
    • Level Modifiers
    • Level
    • Levels Set
    • Objects
    • Respawn Areas
    • Rooms
    • Skill Types
    • Skill
    • Stats
    • Target Options
  • general
    • Actions
    • Create and configure a player spritesheet
    • Events Manager
    • Operations
    • Plugins
    • Project structure
  • generators
    • Attributes per level generator
    • Enemies experience rewards per level
    • map-composite-file
    • maps-elements
    • Generate multiple maps by loader generator
    • Generate multiple maps with associations by loader generator
    • Generate a single map by elements composite loader
    • Generate a single map by elements object loader
    • Players experience per level generator
  • importers
    • Objects Importer
    • Skills Importer
  • packages
    • tile-map-generator
      • The "composite" approach
      • Tile Map Generator
      • The "objects" approach
Powered by GitBook
On this page
  • Default access:
  • Change the default path reldens-admin:
  • Change the admin default role:

Admin Panel

Default access:

In order to create contents in the admin panel we need to start the server and login as administrator.

URL: http://localhost:8080/reldens-admin
user: [email protected]
password: root

By default, only the root registered user is an administrator.

Change the default path reldens-admin:

In your project root folder look for the .env file and replace the value in the value for RELDENS_ADMIN_ROUTE_PATH:

RELDENS_ADMIN_ROUTE_PATH=/your-custom-admin-url

Change the admin default role:

The admin role ID can be changed by setting the default "admin/roleId" in the "config" table in the database.

UPDATE `config` SET `value` = '[new-admin-role-id]' WHERE `scope` = 'server' AND `path` = 'admin/roleId';

That role has to be set in the user you want to be the administrator:

UPDATE `users` SET `role_id` = '[new-admin-role-id]' WHERE `email` = '[email protected]';
PreviousWhat is Reldens?NextSystem Configuration

Last updated 3 months ago