File tree Expand file tree Collapse file tree 4 files changed +31
-1
lines changed
Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 22
33An easy-to-install Valheim dedicated server with a Web interface exposed in the Docker image.
44
5+ #### Features
6+
7+ - game process output
8+ - performance monitor
9+ - worlds management (upload, download, delete)
10+ - users management (admins, banned, permitted)
11+
12+ ###
13+
514![ Screenshot] ( /screenshot.png " Screenshot ")
615
716### Installation
@@ -23,3 +32,7 @@ services:
2332 volumes :
2433 - ./valheim:/root/valheim
2534` ` `
35+
36+ ### License
37+
38+ MIT
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import ErrorSnackbar from 'components/ErrorSnackbar'
77import AuthDialog from 'components/AuthDialog'
88import Container from 'components/Container'
99import Header from 'components/Header'
10+ import Footer from 'components/Footer'
1011import StatusCard from 'components/StatusCard'
1112import OutputCard from 'components/OutputCard'
1213import PerfCard from 'components/PerfCard'
@@ -54,6 +55,9 @@ export default () => (
5455 </ Grid >
5556 </ Grid >
5657 </ Box >
58+ < Box mt = { 4 } mb = { 4 } >
59+ < Footer />
60+ </ Box >
5761 </ Container >
5862 </ ConnectionProvider >
5963 </ ThemeProvider >
Original file line number Diff line number Diff line change 1+ import React from 'react'
2+ import GitHubIcon from '@material-ui/icons/GitHub'
3+ import Button from '@material-ui/core/Button'
4+
5+ export default ( ) => (
6+ < Button
7+ startIcon = { < GitHubIcon /> }
8+ component = "a"
9+ href = "https://github.com/fakundo/valheim-server"
10+ >
11+ valheim-server
12+ </ Button >
13+ )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react'
22import Typography from '@material-ui/core/Typography'
33
44export default ( ) => (
5- < Typography variant = "h4 " >
5+ < Typography variant = "h5 " >
66 Valheim Server Dashboard
77 </ Typography >
88)
You can’t perform that action at this time.
0 commit comments