Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageshell
docker compose up -d

After this, you should see something like this:

Image Added

Now you can use your browser and open http://localhost:4200/ (change, if you run the docker compose on another server, in the following we assume, that you will use localhost)

Image Added

Here you can add the credential that are per default: "System" and "manager"

On the left side, there is the menu bar, that can be extended by clicking on the burger menu.

Image Added

When you want to change the password for the System user or create new users, you could use the "Users" entry.

As WebStudio can be used to connect to different Odysseus servers at the same time, the first step is to add new servers under the "Connection" entry.

You could use any Odysseus server, but in this tutorial we will use the server, that is delivered with the docker compose file.

In the Connections menu klick on Image Added

Image Added

See the docker compose file for the port. If you change the port or add additional servers, you will need to choose this port.

Code Block
languagedocker
   standalone01:
    image: odysseusol/odysseus
    stdin_open: true
    restart: always
    ports:
        - 18888:8888
    volumes:
       - ./standalone01:/var/lib/odysseus 

Afterwards you should see something like

Image Added

Now, it is important to log into the server (at the moment it is only connected). For this, click on the Image Added button and fill out the login credentials
Image Added
if you didn't change anything, this is again System and manager.

Afterwards you will see the following:

Image Added

You can useImage Added to log out again from this server.

Image Added can be used to edit or delete the connection.

With Image Added you get to the IDE for this server.


Remark: Because this is inside a docker environment you cannot use localhost for nexmark queries → use nexmark instead.

...