GitXplorerGitXplorer
r

trycf-gist-server

public
0 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
2a389c1a45db55983ec41384500f738548b4189e

git rid of formidable and just pass the data through. add a test-webapp that uses jquery to simulate what trycf calls using jquery ajax.

rryanguill committed 7 years ago
Unverified
db054097921e87313ea9bf1bc6849bcf698b7849

updated readme.

rryanguill committed 7 years ago
Unverified
8cc0bd6e56a9800ac5067d9507ec1164baaac064

initial commit. should listen on path /gists and pass along any data to the gist api but include the token provided through environment variables.

rryanguill committed 7 years ago

README

The README file for this repository.

Small node server to proxy requests to gist api while adding in authentication token from environment variables.

to build

docker build -t ryanguill/trycf-gist-server:0.0.2 -t ryanguill/trycf-gist-server:latest .

to run

docker run -d -p 3000:3000 -e "TOKEN={your token here}" --name trycf-gist-server ryanguill/trycf-gist-server:latest

to monitor logs

docker logs -f trycf-gist-server

to stop

docker stop trycf-gist-server && docker rm trycf-gist-server