Feel free to contact me at [email protected] or tweet at me @statisticsftw
This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!
It assumes some knowledge of AWS.
Feel free to contact me at [email protected] or tweet at me @statisticsftw
This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!
It assumes some knowledge of AWS.
package com.pulsarix.micronaut.security.attributes.validation; | |
import com.pulsarix.micronaut.security.attributes.util.Attributes; | |
import io.micronaut.http.HttpRequest; | |
import io.micronaut.security.rules.SecurityRuleResult; | |
import javax.inject.Singleton; | |
import java.net.URI; | |
import java.util.List; |
#!/bin/bash | |
PASSWORD=$(keychainPassword) | |
echo $PASSWORD | |
# Fetch current user password from keychain | |
keychainPassword () { | |
return $(security 2>&1 >/dev/null find-generic-password -ga $USER | sed 's/password: "\(.*\)"/\1/') | |
} |