-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves all of our tooling to the Daedalus name. (#12)
* daedalussy * Updates hub status to look sexier uwu
- Loading branch information
Showing
26 changed files
with
61 additions
and
103 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
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
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
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,4 @@ | ||
environment = "pariah.dme" | ||
environment = "daedalus.dme" | ||
|
||
[langserver] | ||
dreamchecker = true | ||
|
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
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
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
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,7 +1,7 @@ | ||
<!-- Most valid html will work in here, excluding images. --> | ||
|
||
<h1>Welcome to Pariah Station!</h1> | ||
<h1>Welcome to Daedalus Dock!</h1> | ||
|
||
<i>This server is running a /tg/station 13 Git build.</i> | ||
<i>This server is running a crafted with care lovechild of Baystation12 and TGStation.</i> | ||
|
||
<i>Enjoy your stay!</i> |
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,20 +1,20 @@ | ||
@REM Script to easily upload pariah.rsc to your FTP-server so that clients download it from an | ||
@REM Script to easily upload daedalus.rsc to your FTP-server so that clients download it from an | ||
@REM external webserver instead of from your connection when joining your game server. | ||
@REM | ||
@REM Run this script every time you have compiled your code, otherwise joining players will get errors. | ||
@REM | ||
@REM Replace USERNAME with your FTP username | ||
@REM Replace PASSWORD with your FTP password | ||
@REM Replace FOLDER/FOLDER with the folder on the FTP server where you want to store pariah.rsc, for example: cd www/rsc | ||
@REM Replace FOLDER/FOLDER with the folder on the FTP server where you want to store daedalus.rsc, for example: cd www/rsc | ||
@REM Replace FTP.DOMAIN.COM with the IP-address or domain name of your FTP server | ||
@REM Add the URL to the location of pariah.rsc on your webserver into data\external_rsc_urls.txt | ||
@REM Add the URL to the location of daedalus.rsc on your webserver into data\external_rsc_urls.txt | ||
@REM | ||
@echo off | ||
echo user USERNAME> ftpcmd.dat | ||
echo PASSWORD>> ftpcmd.dat | ||
echo bin>> ftpcmd.dat | ||
echo cd FOLDER/FOLDER>> ftpcmd.dat | ||
echo put ..\..\pariah.rsc>> ftpcmd.dat | ||
echo put ..\..\daedalus.rsc>> ftpcmd.dat | ||
echo quit>> ftpcmd.dat | ||
ftp -n -s:ftpcmd.dat FTP.DOMAIN.COM | ||
del ftpcmd.dat |
Oops, something went wrong.