-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReadme.txt
More file actions
27 lines (15 loc) · 837 Bytes
/
Readme.txt
File metadata and controls
27 lines (15 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Redux is an open source repository of problems, their solutions, verifiers, and reductions. The project has a particular emphasis on NP-Complete and NP-Hard problems
## Deployment
This application can be deployed as its own standalone server.
Assuming you have dotnet installed, you can run the following:
````
dotnet run
````
this will start a dotnet API server that will listen on port 27000
This application can alternatively be deployed via a docker docker image. Assuming you have Docker installed, run the following:
````
docker build -t reduxapi .
docker run -it --rm -p 27000:80 --name reduxapi reduxapi
````
This will start a local server via docker. Note that this server is using production binaries, so warnings will be distinct from using dotnet run, which is not converted to
a binary only standalone image.