Skip to content

Commit e819a79

Browse files
committed
add first version of setting service
1 parent 4e2bc8a commit e819a79

File tree

18 files changed

+465
-9
lines changed

18 files changed

+465
-9
lines changed

.gitattributes

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# Set default behavior to automatically normalize line endings.
33
###############################################################################
44
* text=auto
5-
*.razor linguist-language=C#
6-
*.html linguist-language=C#
7-
*.css linguist-language=C#
5+
*.razor linguist-language=rust
6+
*.html linguist-language=rust
7+
*.css linguist-language=rust
8+
*.cs linguist-language=rust
89
###############################################################################
910
# Set default behavior for command prompt diff.
1011
#
@@ -19,7 +20,7 @@
1920
#
2021
# Merging from the command prompt will add diff markers to the files if there
2122
# are conflicts (Merging from VS is not affected by the settings below, in VS
22-
# the diff markers are never inserted). Diff markers may cause the following
23+
# the diff markers are never inserted). Diff markers may cause the following
2324
# file extensions to fail to load in VS. An alternative would be to treat
2425
# these files as binary and thus will always conflict and require user
2526
# intervention with every merge. To do so, just uncomment the entries below
@@ -48,9 +49,9 @@
4849

4950
###############################################################################
5051
# diff behavior for common document formats
51-
#
52+
#
5253
# Convert binary document formats to text before diffing them. This feature
53-
# is only available from the command line. Turn it on by uncommenting the
54+
# is only available from the command line. Turn it on by uncommenting the
5455
# entries below.
5556
###############################################################################
5657
#*.doc diff=astextplain
@@ -62,4 +63,4 @@
6263
#*.pdf diff=astextplain
6364
#*.PDF diff=astextplain
6465
#*.rtf diff=astextplain
65-
#*.RTF diff=astextplain
66+
#*.RTF diff=astextplain

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public interface IDeleteInput<TId> : ICrudInput where TId : struct
131131
}
132132
```
133133

134-
# CRQS interface
134+
# CQRS interface
135135

136136
```csharp
137137
public interface ICommand<T> : IRequest<ResultModel<T>> {}

rs/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DATABASE_URL=postgres://localhost/settings_db?user=postgres&password=P@ssw0rd

rs/.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# This file should only ignore things that are generated during a `x.py` build,
2+
# generated by common IDEs, and optional files controlled by the user that
3+
# affect the build (such as config.toml).
4+
# In particular, things like `mir_dump` should not be listed here; they are only
5+
# created during manual debugging and many people like to clean up instead of
6+
# having git ignore such leftovers. You can use `.git/info/exclude` to
7+
# configure your local ignore list.
8+
# FIXME: This needs cleanup.
9+
*~
10+
.#*
11+
.DS_Store
12+
.cproject
13+
.hg/
14+
.hgignore
15+
.idea
16+
*.iml
17+
__pycache__/
18+
*.py[cod]
19+
*$py.class
20+
.project
21+
.settings/
22+
.valgrindrc
23+
.vscode
24+
.favorites.json
25+
/Makefile
26+
/build/
27+
/config.toml
28+
/dist/
29+
/dl/
30+
/doc/
31+
/inst/
32+
/llvm/
33+
/mingw-build/
34+
/src/tools/x/target
35+
# Created by default with `src/ci/docker/run.sh`:
36+
/obj/
37+
/unicode-downloads
38+
/target
39+
# Generated by compiletest for incremental:
40+
/tmp/
41+
tags
42+
tags.*
43+
TAGS
44+
TAGS.*
45+
\#*
46+
\#*\#
47+
config.mk
48+
config.stamp
49+
Session.vim
50+
.cargo
51+
!/src/test/run-make/thumb-none-qemu/example/.cargo
52+
no_llvm_build
53+
# Before adding new lines, see the comment at the top.

rs/Cargo.lock

Lines changed: 285 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)