Skip to content

Commit

Permalink
website and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstruck committed Jun 25, 2018
1 parent 4db5307 commit 7fe4f17
Show file tree
Hide file tree
Showing 49 changed files with 3,328 additions and 516 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*arachne.db*
vendor
build
website/public
.github_token

# Python temps
Expand All @@ -22,4 +23,3 @@ eggs/
*~
\#*\#
.desktop

21 changes: 11 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,6 @@ test:
test-conformance:
python conformance/run_conformance.py http://localhost:18201

start-test-badger-server:
arachne server --rpc-port 18202 --http-port 18201 --database badger

start-test-mongo-server:
arachne server --rpc 18202 --port 18201 --database mongo --mongo-url localhost:27000

start-test-elastic-server:
arachne server --rpc 18202 --port 18201 --database elastic --elastic-url http://localhost:9200

# ---------------------
# Database development
# ---------------------
Expand All @@ -125,7 +116,17 @@ start-mysql:
@docker rm -f arachne-mysql-test > /dev/null 2>&1 || echo
docker run -d --name arachne-mysql-test -p 13306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes mysql:8.0.11 --default-authentication-plugin=mysql_native_password > /dev/null

# ---------------------
# Website
# ---------------------
website:
hugo --source ./website

# Serve the website on localhost:1313
website-dev:
hugo --source ./website -w server

# ---------------------
# Other
# ---------------------
.PHONY: test rocksdb
.PHONY: test rocksdb website
Loading

0 comments on commit 7fe4f17

Please sign in to comment.