Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: setup proxy server #1

Closed
wants to merge 44 commits into from
Closed
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
5fbff88
add protos submodule
Jul 26, 2023
b52a6fc
initialize cargo crate
Jul 26, 2023
ed268b0
add pre-commit config
Jul 26, 2023
0cca82d
add basic dependencies
Jul 26, 2023
2d212b9
add rust fmt config
Jul 26, 2023
2637ebf
nope
Jul 26, 2023
5405085
setup basic web server
Jul 26, 2023
2159cff
compile enrollment protos
Jul 26, 2023
67d5d06
layout enrollment routes
Jul 26, 2023
37aae29
refactor server setup
Jul 27, 2023
4e898b5
change default port
Jul 27, 2023
9d4cdd1
pass config to server
Jul 27, 2023
e84b0ef
remove test route
Jul 27, 2023
41fc15e
perform gRPC request in handler
Jul 27, 2023
c1403df
make generated structs serializable
Jul 27, 2023
b324f2d
implement remaining proxy endpoints
Jul 27, 2023
7e93a10
add more granular gRPC error mapping
Jul 28, 2023
2ae7d57
add cookie management layer
Jul 28, 2023
c15e22e
set session cookie on enrollment start
Jul 28, 2023
06570c1
add auth headers to grpc requests
Jul 28, 2023
7fb9178
update logs
Jul 31, 2023
de7781f
fix error codes
Jul 31, 2023
bf5c783
update readme
Jul 31, 2023
4db0384
update readme
Jul 31, 2023
3f06b77
import frontend repo
Jul 31, 2023
bf05b9e
update static
filipslezaklab Aug 1, 2023
c18466f
update protos
Aug 2, 2023
8d1ad93
fix log content
Aug 2, 2023
5569b50
Merge branch 'setup_proxy_server' into web
filipslezaklab Aug 2, 2023
66015af
enrollment api integration
filipslezaklab Aug 2, 2023
b0a7489
up
filipslezaklab Aug 2, 2023
1db5eb1
up
filipslezaklab Aug 2, 2023
8c79e84
update proxy port
Aug 3, 2023
6faf0da
setup docker image
Aug 3, 2023
e4742fd
serve static files
Aug 3, 2023
0e6d780
remove unused imports
Aug 3, 2023
014ec08
remove unused field
Aug 3, 2023
630adc5
setup github workflows
Aug 3, 2023
5a28ab8
add plugin
Aug 3, 2023
5d83c19
fix timeout
Aug 3, 2023
96265c6
fix typo
Aug 3, 2023
e433e29
fix order
Aug 3, 2023
14590d3
add app info endpoint
Aug 3, 2023
c4378ac
Merge branch 'main' into setup_proxy_server
Aug 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const DeviceConfiguration = () => {
return <></>;
};