Skip to content

Commit d27773c

Browse files
authored
Placeholder sites (#32)
1 parent c307c23 commit d27773c

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can install the required tool "mkdocs" like this (a "mkdocs" directory will
1414
sudo pip install virtualenv
1515
virtualenv mkdocs
1616
source mkdocs/bin/activate
17-
pip install mkdocs==0.16.3
17+
pip install mkdocs==0.16.3
1818
pip install mkdocs-cinder
1919
pip install git+git://github.com/twardoch/clinker-mktheme.git@master --upgrade
2020
```
@@ -31,16 +31,16 @@ Running `make release` will save the docs currently in the master branch, and th
3131

3232
**To add new JavaDocs:**
3333
* In src branch:
34-
* Create new folder for the docs. e.g. `mkdir -p docs/java-docs/bullet-core/0.4.3/`
35-
* Create a place-holder file. e.g. `cp docs/java-docs/bullet-core/0.4.2/index.html docs/java-docs/bullet-core/0.4.3/`
36-
* Add the appropriate link in docs/releases.md (or wherever you want the link). e.g. `[JavaDocs](java-docs/bullet-core/0.4.3/index.html)`
34+
* Create new folder for the docs. e.g. `mkdir -p docs/apidocs/bullet-core/0.4.3/`
35+
* Create a place-holder file. e.g. `cp docs/apidocs/bullet-core/0.4.2/index.html docs/apidocs/bullet-core/0.4.3/`
36+
* Add the appropriate link in docs/releases.md (or wherever you want the link). e.g. `[JavaDocs](apidocs/bullet-core/0.4.3/index.html)`
3737
* Commit these changes to the src branch. e.g. `git add -A && git commit -m "Added new JavaDocs"`
3838
* Push src branch to remote
3939
* Build a release: `make release` - this will leave you in the master branch with a new build ready NOT including the new docs you want to add
4040
* In master branch after doing "make release" BEFORE pushing to remote:
41-
* Create new folder for the docs. e.g.: `mkdir -p java-docs/bullet-core/0.4.3`
42-
* Copy the contents of the new JavaDocs into the new folder. e.g. `cp -r ~/PATH-TO-NEW-DOCS/bullet-core/target/site/apidocs/* java-docs/bullet-core/0.4.3/`
43-
* Commit these changes to the master branch. e.g. `git add -A && git commit -m "Build at abc123 with new JavaDocs"`
41+
* Create new folder for the docs. e.g.: `mkdir -p apidocs/bullet-core/0.4.3`
42+
* Copy the contents of the new JavaDocs into the new folder. e.g. `cp -r ~/PATH-TO-NEW-DOCS/bullet-core/target/site/apidocs/* apidocs/bullet-core/0.4.3/`
43+
* Commit these changes and amend the last commit (the regular build without your docs) to the master branch. e.g. `git add -A && git commit --amend`
4444
* Push master branch to remote
4545

4646
## Building the Documentation

docs/backend/dsl.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
### Coming soon!

docs/pubsub/pulsar.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
### Coming soon!

mkdocs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ pages:
1212
- Spark: quick-start/spark.md
1313
- Storm: quick-start/storm.md
1414
- Backend:
15-
- Getting your data into Bullet: backend/ingestion.md
15+
- Data Ingestion:
16+
- Record Container: backend/ingestion.md
17+
- DSL: backend/dsl.md
1618
- Storm:
1719
- Architecture: backend/storm-architecture.md
1820
- Setup: backend/storm-setup.md
@@ -25,6 +27,7 @@ pages:
2527
- Architecture: pubsub/architecture.md
2628
- Kafka: pubsub/kafka.md
2729
- REST: pubsub/rest.md
30+
- Pulsar: pubsub/pulsar.md
2831
- Storm DRPC: pubsub/storm-drpc.md
2932
- Web Service:
3033
- Setup: ws/setup.md

0 commit comments

Comments
 (0)