gcp_auth_server for postman requests
gcloud should be installed
upload exec file for your operation system from this_repo/bin/{macos,windows}/
exec gcp_auth_server
add js code to prescript in postmen
pm.sendRequest(
"http://localhost:9090/gcloud/print_identity_token",
function (err, response) {
if (!err) {
let token = response.json().token;
pm.variables.set("access_token", token);
pm.request.headers.add("Authorization: Bearer " + token);
}
}
);
brew install mingw-w64
rustup target add x86_64-pc-windows-gnu
cargo build --target x86_64-pc-windows-gnu --release
cargo build --release
curl -i -X OPTIONS -H "Origin: http://127.0.0.1:9090" \
-H 'Access-Control-Request-Method: POST' \
-H 'Access-Control-Request-Headers: Content-Type' \
"http://localhost:8080"
- investigate Concorde TSP Solver
- impement algorithms used concorde for TSP on rust