Skip to content

Commit 7933d4f

Browse files
committed
Update README
1 parent b19f06a commit 7933d4f

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ conf.json
88
build/
99
npm-debug.log
1010
ui/package-lock.json
11-
build/

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/mroote/factorio-server-manager.svg?branch=master)](https://travis-ci.org/mroote/factorio-server-manager)
1+
[![Build Status](https://travis-ci.org/mroote/factorio-server-manager.svg?branch=master)](https://travis-ci.org/mroote/factorio-server-manager)
22

33
# Factorio Server Manager
44

@@ -26,16 +26,16 @@ This tool runs on a Factorio server and allows management of the Factorio server
2626

2727
## Installation Linux
2828
1. Download the latest release
29-
* [https://github.com/MajorMJR/factorio-server-manager/releases](https://github.com/MajorMJR/factorio-server-manager/releases)
30-
2. Download the Factorio Standalone server and install to a known directory.
29+
* [https://github.com/mroote/factorio-server-manager/releases](https://github.com/mroote/factorio-server-manager/releases)
30+
2. Download the Factorio Standalone server and install to a known directory.
3131
3. Run the server binary file, use the --dir flag to point the management server to your Factorio installation.
3232
* ```./factorio-server-manager --dir /home/user/.factorio ```
3333
4. Visit [localhost:8080](localhost:8080) in your web browser.
3434

3535
## Installation Windows
3636
1. Download the latest release
37-
* [https://github.com/MajorMJR/factorio-server-manager/releases](https://github.com/MajorMJR/factorio-server-manager/releases)
38-
2. Download the Factorio Standalone server and install to a known directory.
37+
* [https://github.com/mroote/factorio-server-manager/releases](https://github.com/mroote/factorio-server-manager/releases)
38+
2. Download the Factorio Standalone server and install to a known directory.
3939
3. Run the server binary file via cmd or Powershell, use the --dir flag to point the management server to your Factorio installation.
4040
* ```.\factorio-server-manager --dir C:/Users/username/Factorio```
4141
4. Visit [localhost:8080](localhost:8080) in your web browser.
@@ -58,7 +58,7 @@ Usage of ./factorio-server-manager:
5858
Maximum filesize for uploaded files (default 20MB). (default 20971520)
5959
-port string
6060
Specify a port for the server. (default "8080")
61-
61+
6262
Example:
6363
6464
./factorio-server-manager --dir /home/user/.factorio --host 10.0.0.1
@@ -77,7 +77,7 @@ Example:
7777

7878

7979
## Development
80-
The backend is built as a REST API via the Go web application.
80+
The backend is built as a REST API via the Go web application.
8181

8282
It also acts as the webserver to serve the front end react application
8383

@@ -90,14 +90,14 @@ All api actions are accessible with the /api route. The frontend is accessible
9090
#### Building Releases
9191
Creates a release zip for windows and linux: (this will install the dependencies listed in gopkgdeps)
9292
```
93-
git clone https://github.com/MajorMJR/factorio-server-manager.git
93+
git clone https://github.com/mroote/factorio-server-manager.git
9494
cd factorio-server-manager
9595
make gen_release
9696
```
9797

9898
#### Building a Testing Binary:
9999
```
100-
git clone https://github.com/MajorMJR/factorio-server-manager.git
100+
git clone https://github.com/mroote/factorio-server-manager.git
101101
cd factorio-server-manager
102102
make
103103
./factorio-server-manager/factorio-server-manager
@@ -117,8 +117,8 @@ make app/bundle.js
117117

118118
### Building for Windows
119119
1. Download the latest release source zip file
120-
* [https://github.com/MajorMJR/factorio-server-manager/releases](https://github.com/MajorMJR/factorio-server-manager/releases)
121-
2. Unzip the Factorio Standalone server and move it to a known directory.
120+
* [https://github.com/mroote/factorio-server-manager/releases](https://github.com/mroote/factorio-server-manager/releases)
121+
2. Unzip the Factorio Standalone server and move it to a known directory.
122122
3. Download and install Go 1.6 64-bit or 32-bit depending on your operating system, if unsure download 32-bit
123123
* https://storage.googleapis.com/golang/go1.6.windows-amd64.msi 64-bit
124124
* https://storage.googleapis.com/golang/go1.6.windows-386.msi 32-bit
@@ -143,7 +143,7 @@ go get github.com/gorilla/mux
143143
go get github.com/hpcloud/tail
144144
```
145145

146-
3. Now you will want to go into the src folder for example "C:\FS\factorio-server-manager\src" once there hold down left shift and right click an empty area of the folder. Then click "Open command windows here"
146+
3. Now you will want to go into the src folder for example "C:\FS\factorio-server-manager\src" once there hold down left shift and right click an empty area of the folder. Then click "Open command windows here"
147147
4. Type this into the command prompt then hit enter:
148148

149149
```

0 commit comments

Comments
 (0)