mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-05-06 22:31:18 +00:00

Refactor the main page to show the Steam login when none is detected. We can't do anything without it at first. Later, we can detect if the server is installed and allow operations. Or not. Remove server container. This will be created and maintained by the web container going forward. Use node 18, as vite requires it. Use a single package.json for everything. This way it can be installed at the root of the container and not show up in the bind mount. Refactor store to include actions. We can just define them and call them, instead of using fetch directly everywhere. WIP. Begin to implement some of the backend methods, like the steam login. It works! Remove the old code.
13 lines
348 B
HTML
13 lines
348 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" href="/favicon.ico">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DayZ Docker Server</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="docroot/src/main.js"></script>
|
|
</body>
|
|
</html>
|