4
0
Mike 7 сар өмнө
parent
commit
418ebe3579

+ 3 - 3
.goreleaser.yaml

@@ -6,7 +6,7 @@ before:
 
 
 builds:
 builds:
   - id: linux
   - id: linux
-    binary: retro_aim_server
+    binary: open_oscar_server
     goos:
     goos:
       - linux
       - linux
     goarch:
     goarch:
@@ -18,7 +18,7 @@ builds:
     env:
     env:
       - CGO_ENABLED=0
       - CGO_ENABLED=0
   - id: macos
   - id: macos
-    binary: retro_aim_server
+    binary: open_oscar_server
     goos:
     goos:
       - darwin
       - darwin
     goarch:
     goarch:
@@ -28,7 +28,7 @@ builds:
     env:
     env:
       - CGO_ENABLED=0
       - CGO_ENABLED=0
   - id: windows
   - id: windows
-    binary: retro_aim_server
+    binary: open_oscar_server
     goos:
     goos:
       - windows
       - windows
     goarch:
     goarch:

+ 1 - 1
Dockerfile

@@ -15,6 +15,6 @@ WORKDIR /app
 
 
 COPY --from=builder /app/open_oscar_server /app/
 COPY --from=builder /app/open_oscar_server /app/
 
 
-EXPOSE 5190 8080 9898
+EXPOSE 5190 8080 9898 1088
 
 
 CMD ["/app/open_oscar_server"]
 CMD ["/app/open_oscar_server"]

+ 1 - 1
config/ras.service

@@ -14,7 +14,7 @@ Environment="TOC_LISTENERS=0.0.0.0:9898"
 Environment="DB_PATH=/var/lib/ras/oscar.sqlite"
 Environment="DB_PATH=/var/lib/ras/oscar.sqlite"
 Environment="DISABLE_AUTH=true"
 Environment="DISABLE_AUTH=true"
 Environment="LOG_LEVEL=info"
 Environment="LOG_LEVEL=info"
-ExecStart=/opt/ras/retro_aim_server
+ExecStart=/opt/ras/open_oscar_server
 Restart=on-failure
 Restart=on-failure
 
 
 [Install]
 [Install]

+ 1 - 0
docker-compose.yaml

@@ -34,6 +34,7 @@ services:
       - "5190:5190"
       - "5190:5190"
       - "8080:8080"
       - "8080:8080"
       - "9898:9898"
       - "9898:9898"
+      - "1088:1088"
     env_file:
     env_file:
       - ./config/ssl/settings.env
       - ./config/ssl/settings.env
     volumes:
     volumes:

+ 2 - 2
docs/BUILD.md

@@ -43,13 +43,13 @@ scripts/run_dev.sh
 To build the server binary:
 To build the server binary:
 
 
 ```shell
 ```shell
-go build -o retro_aim_server ./cmd/server
+go build -o open_oscar_server ./cmd/server
 ```
 ```
 
 
 To run the binary with the settings file:
 To run the binary with the settings file:
 
 
 ```shell
 ```shell
-./retro_aim_server -config config/settings.env
+./open_oscar_server -config config/settings.env
 ```
 ```
 
 
 ## Testing
 ## Testing

+ 1 - 1
docs/DOCKER.md

@@ -14,7 +14,7 @@ This guide explains how to set up an SSL-enabled instance of Open OSCAR Server u
 
 
 ```bash
 ```bash
 git clone https://github.com/mk6i/open-oscar-server.git
 git clone https://github.com/mk6i/open-oscar-server.git
-cd retro-aim-server
+cd open-oscar-server
 ```
 ```
 
 
 ### 2. Build Docker Images
 ### 2. Build Docker Images

+ 1 - 1
docs/LINUX.md

@@ -26,7 +26,7 @@ This guide explains how to download, configure and run Open OSCAR Server on Linu
    Run the following command to launch Open OSCAR Server:
    Run the following command to launch Open OSCAR Server:
 
 
    ```shell
    ```shell
-   ./retro_aim_server
+   ./open_oscar_server
    ```
    ```
 
 
    Open OSCAR Server will run in the terminal, ready to accept AIM client connections.
    Open OSCAR Server will run in the terminal, ready to accept AIM client connections.

+ 3 - 3
docs/MACOS.md

@@ -25,7 +25,7 @@ This guide explains how to download, configure and run Open OSCAR Server on macO
    Open a terminal and navigate to the extracted directory. This terminal will be used for the remaining steps.
    Open a terminal and navigate to the extracted directory. This terminal will be used for the remaining steps.
 
 
    ```shell
    ```shell
-   cd ~/Downloads/retro_aim_server.0.11.0.macos.intel_x86_64/
+   cd ~/Downloads/open_oscar_server.0.21.0.macos.intel_x86_64/
    ```
    ```
 
 
 3. **Remove Quarantine**
 3. **Remove Quarantine**
@@ -34,7 +34,7 @@ This guide explains how to download, configure and run Open OSCAR Server on macO
    flag from the binary, run following command in the same terminal,
    flag from the binary, run following command in the same terminal,
 
 
    ```shell
    ```shell
-   sudo xattr -d com.apple.quarantine ./retro_aim_server
+   sudo xattr -d com.apple.quarantine ./open_oscar_server
    ```
    ```
 
 
    > While the binaries are 100% safe, you can avoid the security concern by [building the application yourself](./BUILD.md).
    > While the binaries are 100% safe, you can avoid the security concern by [building the application yourself](./BUILD.md).
@@ -63,7 +63,7 @@ This guide explains how to download, configure and run Open OSCAR Server on macO
    Run the following command to launch Open OSCAR Server:
    Run the following command to launch Open OSCAR Server:
 
 
    ```shell
    ```shell
-   ./retro_aim_server
+   ./open_oscar_server
    ```
    ```
 
 
    Open OSCAR Server will run in the terminal, ready to accept AIM client connections.
    Open OSCAR Server will run in the terminal, ready to accept AIM client connections.

+ 1 - 1
docs/SYSTEMD.md

@@ -18,7 +18,7 @@ a production service.
 
 
 3. **Extract the archive**
 3. **Extract the archive**
 
 
-   Extract the archive using the usual `tar` invocation, and move `retro_aim_server` into `/opt/ras`
+   Extract the archive using the usual `tar` invocation, and move `open_oscar_server` into `/opt/ras`
 
 
 4. **Set Ownership and Permissions**
 4. **Set Ownership and Permissions**
 
 

+ 1 - 1
docs/WINDOWS.md

@@ -23,7 +23,7 @@ This guide explains how to download, configure and run Open OSCAR Server on Wind
 
 
 3. **Start the Application**
 3. **Start the Application**
 
 
-   Launch `retro-aim-server.exe` to start Open OSCAR Server.
+   Launch `open_oscar_server.exe` to start Open OSCAR Server.
 
 
    Because Open OSCAR Server has not built up enough reputation with Microsoft, Windows will flag the application as a
    Because Open OSCAR Server has not built up enough reputation with Microsoft, Windows will flag the application as a
    security risk the first time you run it. You'll be presented with a `Microsoft Defender SmartScreen` warning prompt
    security risk the first time you run it. You'll be presented with a `Microsoft Defender SmartScreen` warning prompt