aws static-web setup
parent
6fb163a712
commit
48b15708f5
@ -0,0 +1,14 @@
|
||||
# Android Studio
|
||||
|
||||
* change location of `C:/Users/user/.AndroidStudio4.0`
|
||||
* Open `D:\Program Files\Android\Android Studio\bin\idea.properties`
|
||||
|
||||
```text
|
||||
idea.config.path=E:/AndroidHome/.AndroidStudio4.0/config
|
||||
|
||||
idea.system.path=E:/AndroidHome/.AndroidStudio4.0/system
|
||||
```
|
||||
|
||||
* change location of SDK `c:/Users/user/.android`
|
||||
* add environment variable `ANDROID_SDK_HOME=E:/AndroidHome`
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
# Elastic Container Service
|
||||
|
||||
1. EC2
|
||||
2. Fargate : Serverless
|
||||
1. copilot CLI
|
||||
|
||||
|
||||
|
||||
## Security
|
||||
|
||||
* AWS WAF
|
||||
* AWS Shield
|
||||
@ -0,0 +1,6 @@
|
||||
# Static web deployment
|
||||
|
||||
1. Amplify Console : CICD pipeline deployment (git -> build -> website)
|
||||
2. Amazon Lightsail : Virtual Server, DB
|
||||
3. Elastic Beanstalk : Managed server
|
||||
4. S3 Web :\\ho
|
||||
@ -0,0 +1,24 @@
|
||||
# Quick Guide
|
||||
|
||||
* Prerequisite
|
||||
|
||||
* Gradle Extension Pack
|
||||
* Java Extension Pack
|
||||
* JDK 11 for Java Server Tool support
|
||||
* Spring boot Pack
|
||||
|
||||
* To implement gradle bootRun with debugger, add below to `settings.json`
|
||||
|
||||
```json
|
||||
{
|
||||
"gradle.javaDebug": {
|
||||
"tasks": [
|
||||
"bootRun"
|
||||
],
|
||||
"clean": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue