move server to server directory.

This commit is contained in:
Miroslav Šedivý 2024-06-23 17:48:14 +02:00
parent da45f62ca8
commit 5b98344205
211 changed files with 18 additions and 10 deletions

View File

@ -4,7 +4,7 @@
"name": "Go", "name": "Go",
"build": { "build": {
"dockerfile": "Dockerfile", "dockerfile": "Dockerfile",
"context": "../", "context": "../server/",
"args": { "args": {
// Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.15 // Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.15
"VARIANT": "1.20", "VARIANT": "1.20",

4
.gitignore vendored
View File

@ -1,7 +1,3 @@
bin/
.idea
.env.development
runtime/fonts/* runtime/fonts/*
!runtime/fonts/.gitkeep !runtime/fonts/.gitkeep

8
.vscode/launch.json vendored
View File

@ -10,11 +10,11 @@
"debugAdapter": "dlv-dap", "debugAdapter": "dlv-dap",
"request": "launch", "request": "launch",
"mode": "debug", "mode": "debug",
"program": "${workspaceFolder}/cmd/neko", "program": "${workspaceFolder}/server/cmd/neko",
"output": "${workspaceFolder}/bin/debug/neko", "output": "${workspaceFolder}/server/bin/debug/neko",
"cwd": "${workspaceFolder}/", "cwd": "${workspaceFolder}/server/",
"args": ["serve", "-d", "-c", "dev/runtime/config.yml"], "args": ["serve", "-d", "-c", "dev/runtime/config.yml"],
"envFile": "${workspaceFolder}/.env.development" "envFile": "${workspaceFolder}/server/.env.development"
} }
] ]
} }

View File

@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier same "printed page" as the copyright notice for easier
identification within third-party archives. identification within third-party archives.
Copyright 2020 Nurdism <nurdism.io@gmail.com>, 2020-2022 m1k1o & Demodesk GmbH Copyright 2020 Nurdism <nurdism.io@gmail.com>, 2020- https://github.com/m1k1o
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

12
server/.gitignore vendored Normal file
View File

@ -0,0 +1,12 @@
bin/
.idea
.env.development
runtime/fonts/*
!runtime/fonts/.gitkeep
runtime/icon-theme/*
!runtime/icon-theme/.gitkeep
plugins/*
!plugins/.gitkeep

View File

Some files were not shown because too many files have changed in this diff Show More