-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Windows and Unix-specific starter config files.
- Loading branch information
Showing
5 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "config-loader" | ||
version = "2.2.2" | ||
version = "2.2.3" | ||
authors = ["Zacchary Dempsey-Plante <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
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,23 @@ | ||
# Config Loader - https://github.com/zedseven/config-loader | ||
|
||
# Here's where you define the file targets. These are the files you | ||
# have to switch out whenever you want to change to a different configuration. | ||
# Please use absolute file paths. | ||
[targets] | ||
target_name = "/some/file/path.ext" | ||
another_target_name = "/some/other/file/path.ext" | ||
|
||
# Here's where each loadout is defined. Include as many files for each loadout | ||
# as you need. | ||
# Each loadout is completely separate from the others. Each one should be a | ||
# complete set of all the files necessary to work. | ||
[[loadouts]] | ||
name = "Some Loadout Name A" | ||
[loadouts.files] | ||
target_name = "/some/file/for/loadout/a.ext" | ||
|
||
[[loadouts]] | ||
name = "Some Loadout Name B" | ||
[loadouts.files] | ||
target_name = "/some/file/for/loadout/b.ext" | ||
another_target_name = "/some/other/file/for/loadout/b.ext" |
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