We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Having to install the auth0-simulator as a dev dependency is something we should try and avoid.
Creating a downloadable docker image that we could run something like this would make things a lot easier.
docker run -i --rm --security-opt seccomp=$HOME/chrome.json \ -v myvol:/app \ --name auth0-simulator \ frontside/auth-simulator:latest
We could try something like this to make ssl configuration easier.
The text was updated successfully, but these errors were encountered:
What does the user story look like for getting setup with SSL and a complete simulator?
Sorry, something went wrong.
@cowboyd I linked to something I would like to spike in the above issue
https://dev.to/istarkov/fast-and-easy-way-to-setup-web-developer-certificates-450e
TLDR;
A auth0-simulator.com 127.0.0.1
mkcert
let ssl: SSLOptions = { key: fs.readFileSync( paths.ssl.keyFile ), cert: fs.readFileSync(paths.ssl.pemFile), } as const;
I think we need some way of being able to configure the certs and by either defaulting to mkcert or letsencrypt certs.
dagda1
No branches or pull requests
Having to install the auth0-simulator as a dev dependency is something we should try and avoid.
Creating a downloadable docker image that we could run something like this would make things a lot easier.
docker run -i --rm --security-opt seccomp=$HOME/chrome.json \ -v myvol:/app \ --name auth0-simulator \ frontside/auth-simulator:latest
We could try something like this to make ssl configuration easier.
The text was updated successfully, but these errors were encountered: