create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // Control Flow | |
| // Baisc Control Flow | |
| var isReady = false; | |
| if (isReady) { | |
| console.log("The user is ready to sign up."); | |
| } else { | |
| console.log("The user is not ready to sign up."); |
| export default ({ env }) => ({ | |
| upload: { | |
| config: { | |
| provider: "strapi-provider-upload-aws-s3-advanced", | |
| providerOptions: { | |
| accessKeyId: env("AWS_S3_ACCESS_KEY_ID"), | |
| secretAccessKey: env("AWS_S3_ACCESS_SECRET"), | |
| region: env("AWS_REGION"), | |
| params: { | |
| Bucket: env("AWS_BUCKET_NAME"), |
| module.exports = ({ env }) => [ | |
| "strapi::errors", | |
| "strapi::security", | |
| "strapi::cors", | |
| "strapi::poweredBy", | |
| "strapi::logger", | |
| "strapi::query", | |
| "strapi::body", | |
| "strapi::session", | |
| "strapi::favicon", |
| #!/usr/bin/env sh | |
| # | |
| # Compare a command exit status to some given number(s) for a period of time. | |
| CMD_NAME="${0##*/}" | |
| CMD="" | |
| STATUS=0 | |
| TIME=10 | |
| TIME_START=0 | |
| QUIET=0 |
| Keyword | RGB hex value | |
|---|---|---|
| aliceblue | #f0f8ff | |
| antiquewhite | #faebd7 | |
| aqua | #00ffff | |
| aquamarine | #7fffd4 | |
| azure | #f0ffff | |
| beige | #f5f5dc | |
| bisque | #ffe4c4 | |
| black | #000000 | |
| blanchedalmond | #ffebcd |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"