Skip to content

Commit aa7e13d

Browse files
committed
Initial commit
0 parents  commit aa7e13d

File tree

480 files changed

+75178
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

480 files changed

+75178
-0
lines changed

LICENSE.txt

Lines changed: 663 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
%:
2+
$(MAKE) -C src $@

README.md

Lines changed: 13 additions & 0 deletions

docs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
book

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.PHONY: install-mdbook build serve open push
2+
3+
MDBOOK := $(HOME)/.cargo/bin/mdbook
4+
5+
install-mdbook:
6+
@[ -x "$(MDBOOK)" ] || cargo install mdbook
7+
8+
build: install-mdbook
9+
$(MDBOOK) build
10+
11+
serve: install-mdbook
12+
$(MDBOOK) serve --port 3000
13+
14+
open: install-mdbook
15+
$(MDBOOK) serve --port 3000 --open
16+
17+
push:
18+
rm -rf book
19+
$(MAKE) build
20+
cd book; git init; git branch -m website; git add -A; git commit -m "Automatic build $$(date -u)"; git remote add origin git@github.com:CRACK-MCR/MaCySTe.git; git push --force origin website

docs/book.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[book]
2+
authors = [
3+
"Giacomo Longo",
4+
"Alessandro Orlich",
5+
"Enrico Russo",
6+
]
7+
language = "en"
8+
multilingual = false
9+
src = "src"
10+
title = "MaCySTe reference manual"
11+
description = "Manual for the Maritime Cyber Security Testbed (MaCySTe)"
12+
13+
[output.html]
14+
mathjax-support = true

docs/src/SUMMARY.md

Lines changed: 63 additions & 0 deletions

docs/src/extending/contributing.md

Lines changed: 17 additions & 0 deletions

docs/src/extending/licensing.md

Lines changed: 13 additions & 0 deletions

docs/src/extending/repo.md

Lines changed: 192 additions & 0 deletions

0 commit comments

Comments
 (0)