Updates to README

This commit is contained in:
Calabro, Brandon
2025-07-21 00:09:29 -05:00
parent bba96cbd00
commit 2cbb9ed7e2

View File

@@ -64,4 +64,18 @@ REPO_PASSWORD=your-personal-access-token
# (Optional) Credentials for the oracle DB user/pass, otherwise DO NOT add these 2 lines.
DB_USER=swg
DB_USER_PASSWORD=swg
```
```
## DEVELOPER GUIDE
Here are some commands that will help with development. Say you need to move files to the TRE and they compiled within
the container, you can easily copy files to your local file system.
First, exit the container with `exit` then:
> docker cp <container_name>:<path_inside_container> <local_path>
For example, this command will copy the `buff.iff` file to a local directory called `ServerFiles` on the Desktop of my
Window's machine. NOTE: For Windows, surround the <local_path> with quotes.
> docker cp swg:/swg-main/data/sku.0/sys.shared/compiled/game/datatables/buff/buff.iff "C:\Users\username\OneDrive\Desktop\ServerFiles"