-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
14,856 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
**/.dockerignore | ||
**/.git | ||
**/.gitignore | ||
**/.vscode | ||
**/docker-compose* | ||
**/Dockerfile* | ||
**/node_modules | ||
**/npm-debug.log | ||
**/dist | ||
.github | ||
LICENSE | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
node_modules | ||
.idea | ||
.fleet | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Changelog | ||
|
||
Все заметные изменения в этом проекте будут задокументированы в этом файле. | ||
|
||
Формат основан на [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
данный проект придерживается [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Добавлено | ||
|
||
- Добавлен параметр игнорирования добавления библиотеки в classpath для профилей | ||
- Связь лаунчера с лаунчсервером | ||
- Минификация/обфускация лаунчера | ||
|
||
### Исправлено | ||
|
||
- Исправление ошибки отдачи файлов с пробелами в названии | ||
- Исправление алгоритма постороения функции хеширования в DatabasePasswordProvider | ||
|
||
## [0.0.4] - 2024-02-23 | ||
|
||
## [0.0.3] - 2022-08-10 | ||
|
||
## [0.0.2] - 2021-07-11 | ||
|
||
## [0.0.1] - 2021-02-27 | ||
|
||
[unreleased]: https://github.com/AuroraTeam/AuroraLauncher/compare/v0.0.4...dev | ||
[0.0.4]: https://github.com/AuroraTeam/AuroraLauncher/compare/v0.0.3...v0.0.4 | ||
[0.0.3]: https://github.com/AuroraTeam/AuroraLauncher/compare/v0.0.2...v0.0.3 | ||
[0.0.2]: https://github.com/AuroraTeam/AuroraLauncher/compare/v0.0.1...v0.0.2 | ||
[0.0.1]: https://github.com/AuroraTeam/AuroraLauncher/releases/tag/v0.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:20.12.2-slim AS build | ||
WORKDIR /build | ||
COPY . . | ||
RUN npm i &&\ | ||
npm run build:libs &&\ | ||
npm run build:prod -w packages/server | ||
|
||
FROM node:20.12.2-slim AS prod | ||
EXPOSE 1370/tcp | ||
VOLUME [ "/data" ] | ||
ENV AURORA_STORAGE_OVERRIDE=/data | ||
WORKDIR /app | ||
COPY --from=build /build/packages/server/dist/LauncherServer.js . | ||
|
||
ENTRYPOINT ["node", "LauncherServer.js"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: '3' | ||
services: | ||
launcher: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
ports: | ||
- "1370:1370" | ||
volumes: | ||
- data:/data | ||
# environment: | ||
# - AURORA_IS_DEBUG=true | ||
# - AURORA_IS_DEV=true | ||
|
||
volumes: | ||
data: |
Oops, something went wrong.