Skip to content

Commit

Permalink
New Upload
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyThorne committed Dec 1, 2018
1 parent bf878ed commit 249e098
Show file tree
Hide file tree
Showing 5,094 changed files with 673,816 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
17 changes: 17 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.git
!.git/HEAD
!.git/logs/HEAD
baystation12.dmb
baystation12.rsc
baystation12.dyn.rsc
baystation12.dyn.rsc.lk
baystation12.int
libmysql.dll
.dockerignore
Dockerfile
.editorconfig
.gitattributes
.gitignore
.travis.yml
.github
sql
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
root = true

[*]
insert_final_newline = false
trim_trailing_whitespace = true

[*.dm]
end_of_line = crlf
indent_style = tab
indent_size = 4

[*.dmm]
end_of_line = crlf

[*.py]
indent_style = space
indent_size = 4

[*.yml]
indent_style = space
indent_size = 2

55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!--
Все что находится внутри специальных тегов, как это сообщение, не будет отображено в итогом репорте.
Не напишите, случайно, что-нибудь в них!
За шутки и спам будем ругаться.
ЗАПИШИТЕ СВОИ ОТВЕТЫ НА ПУСТЫХ СТРОЧКАХ ПОД ЗАГОЛОВКАМИ
(строки, которые начинаются с #)
Не редактируйте и не удаляйте их - это часть форматирования.
-->

#### Описание проблемы


#### Разница между реальным поведением и ожидаемым



#### Как воспроизвести проблему?



#### Конкретная информация
<!-- например, название объекта, с которым связана проблема, различные логи и тексты ошибок... -->



#### Как долго известно о проблеме?
<!--
Постарайтесь дать как можно более точное время. После вчерашнего обновления или
проблема была с тех пор, как поставили билд? Во всех билдах SS13 есть эта проблема?
Чем точнее напишите - тем проще будет найти источник. Если не уверены, то так и напишите.
-->



#### Версия клиента, версия сервера и идентификатор игры
<!--
Если часть информации не касается бага - можете опустить, но лучше заполнить.
Версия клиента - смотрите информацию в самом клиенте BYOND.
Версию сервера - команда "Show server revision" в вкладке ООС на сервере
ID игры - там же.
-->


#### Дополнительная информация

<!-- Пожалуйста, отметьте то, что верно для вашей ошибки. Чем больше отметите - тем быстрее решим проблему. -->

<!-- Отмечайте с помощью x внутри квадратика (Вот так: [x])-->
<!-- Не забудьте удалить пробел! Иначе все сломается. -->
- [ ] Проблему можно воспроизвести хотя бы один раз
- [ ] Проблема может быть воспроизведена разными игроками (не зависит от конкретного игрока)
- [ ] Проблема может быть воспроизведена в нескольких раундах (не зависит от конкретного раунда)
- [ ] Проблема случилась в недавнем раунде (прошло меньше недели)
- [ ] [Не получилось найти похожую проблему в списке](https://github.com/Rampoch/Chaotic-Onyx/issues)
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#ignore misc BYOND files
Thumbs.db
*.log
*.int
*.rsc
*.dmb
*.lk
*.backup
*.before
data/
cfg/
build_log.txt
use_map
stopserver
reboot_called
atupdate
__pycache__

# ignore config, but not subdirs
!config/*/
config/*
sql/test_db
36 changes: 36 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
language: generic
sudo: false
dist: precise

env:
global:
BYOND_MAJOR="511"
BYOND_MINOR="1385"

# ALL MAPS MUST BE PRESENT HERE
# IF THEY ARE NOT, YOUR BUILD WILL FAIL
matrix:
- TEST=CODE
- TEST=WEB
- TEST=MAP MAP_PATH=example
- TEST=MAP MAP_PATH=torch
- TEST=MAP MAP_PATH=overmap_example
- TEST=MAP MAP_PATH=away_sites_testing

cache:
directories:
- tgui/node_modules
- $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}

addons:
apt:
packages:
- libc6-i386
- libgcc1:i386
- libstdc++6:i386
- oracle-java8-set-default
- python
- python-pip

script:
- test/run-test.sh
19 changes: 19 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Baystation12
Copyright (C) 2010-2015 Baystation12 and tgstation13.

Baystation12 is licensed under the GNU Affero General Public License version 3, which can be found in full in LICENSE-AGPL3.txt.
Commits with a git authorship date prior to `1420675200 +0000` (2015/01/08 00:00) are licensed under the GNU General Public License version 3, which can be found in full in LICENSE-GPL3.txt.
All commits whose authorship dates are not prior to `1420675200 +0000` are assumed to be licensed under AGPL v3, if you wish to license under GPL v3 please make this clear in the commit message and any added files.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM mloc6/byond:511

COPY . /bs12
RUN chown -R nobody:nogroup /bs12

USER nobody

WORKDIR /bs12

RUN DreamMaker baystation12.dme

EXPOSE 8000
VOLUME /bs12/data
VOLUME /bs12/config

ENTRYPOINT ["DreamDaemon"]
CMD ["baystation12.dmb", "8000", "-invisible", "-trusted"]
Loading

0 comments on commit 249e098

Please sign in to comment.