-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-organize Configuration documentation (#5501)
* * Moved ~/articles/hocon/index.md --> ~/articles/configuration/hocon.md * Moved ~/articles/concepts/configuration.md --> ~/articles/configuration/index.md * Moved ~/articles/configuration/* (all of the module-specific configurations) --> ~/articles/configuration/modules/* Co-authored-by: Aaron Stannard <aaron@petabridge.com>
- Loading branch information
1 parent
3706c6f
commit 7cce1a6
Showing
18 changed files
with
99 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Akka.NET Configuration</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/index.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/index.html">Akka.NET Configuration</a>.</p> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Akka.Cluster Configuration</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/modules/akka.cluster.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/modules/akka.cluster.html">Akka.Cluster Configuration</a>.</p> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Akka.Persistence Configuration</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/modules/akka.persistence.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/modules/akka.persistence.html">Akka.Persistence Configuration</a>.</p> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Akka.Remote Configuration</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/modules/akka.remote.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/modules/akka.remote.html">Akka.Remote Configuration</a>.</p> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Akka.Streams Configuration</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/modules/akka.streams.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/modules/akka.streams.html">Akka.Streams Configuration</a>.</p> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Akka.Testkit Configuration</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/modules/akka.testkit.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/modules/akka.testkit.html">Akka.Testkit Configuration</a>.</p> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Akka.TestKit Configuration | ||
|
||
Below is the default HOCON configuration for the base `Akka.TestKit` package. | ||
|
||
[!code[Akka.TestKit.dll HOCON Configuration](../../../../src/core/Akka.TestKit/Internal/Reference.conf)] | ||
|
||
Additionally, it's also possible to change the default [`IScheduler` implementation](../../../api/Akka.Actor.IScheduler.yml) in the `Akka.TestKit` to use [a virtualized `TestScheduler` implementation](../../api/Akka.TestKit.TestScheduler.yml) that Akka.NET developers can use to artificially advance time forward. To swap in the `TestScheduler`, developers will want to include the HOCON below: | ||
|
||
[!code[Akka.TestKit.dll TestScheduler HOCON Configuration](../../../../src/core/Akka.TestKit/Configs/TestScheduler.conf)] |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- name: Akka.Cluster | ||
href: akka.cluster.md | ||
- name: Akka.Remote | ||
href: akka.remote.md | ||
- name: Akka.Persistence | ||
href: akka.persistence.md | ||
- name: Akka.Streams | ||
href: akka.streams.md | ||
- name: Akka.TestKit | ||
href: akka.testkit.md |
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,12 +1,8 @@ | ||
- name: Configurations | ||
href: config.md | ||
- name: HOCON Syntax and Practices in Akka.NET | ||
href: hocon.md | ||
- name: Akka | ||
href: akka.md | ||
- name: Akka.Remote | ||
href: akka.remote.md | ||
- name: Akka.Cluster | ||
href: akka.cluster.md | ||
- name: Akka.Persistence | ||
href: akka.persistence.md | ||
- name: Akka.Streams | ||
href: akka.streams.md | ||
- name: Akka.TestKit | ||
href: akka.testkit.md | ||
- name: Modules | ||
href: modules/toc.yml |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>HOCON Syntax and Practices in Akka.NET</title> | ||
<meta http-equiv = "refresh" content="1;url=../configuration/hocon.html" /> | ||
</head> | ||
<body> | ||
<p>This page has been moved to <a href="../configuration/hocon.html">HOCON Syntax and Practices in Akka.NET</a>.</p> | ||
</body> | ||
</html> |
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