Skip to content

Commit

Permalink
Redone way to get logs of server
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterbrandsen committed Feb 8, 2024
1 parent 80bc120 commit 0728d2c
Show file tree
Hide file tree
Showing 6 changed files with 727 additions and 298 deletions.
54 changes: 27 additions & 27 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"prettier"
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"prettier"
],
"plugins": ["prettier"],
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"linebreak-style": ["error", (process.platform === "win32" ? "windows" : "unix")],
"no-console": "off",
"import/extensions": "off",
"no-underscore-dangle": "off",
"no-param-reassign": ["error", { "props": false }],
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
},
],
"plugins": ["prettier"],
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"linebreak-style": ["error", (process.platform === "win32" ? "windows" : "unix")],
"no-console":"off",
"import/extensions":"off",
"no-underscore-dangle":"off",
"no-param-reassign": ["error", { "props": false }],
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
},
],
}
}
}
6 changes: 0 additions & 6 deletions .vscode/settings.json

This file was deleted.

2 changes: 2 additions & 0 deletions docker-compose.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ version: '3'
services:
screeps:
image: screepers/screeps-launcher
container_name: screeps_performance_server
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./config.yml:/screeps/config.yml
- ./bots:/screeps/bots
- screeps-data:/screeps
Expand Down
Loading

0 comments on commit 0728d2c

Please sign in to comment.