摘要:
Elastic Beanstalk is a powerful Development Operations tool (Dev Ops) to deploy your code to AWS services and infrastructure with minimal effort. EB C 阅读全文
摘要:
1. Shell - Linux/Mac Users For Unix/Linux/Mac operating systems, a shell is a command-line program that accepts users' commands and executes those com 阅读全文
摘要:
When Launch a new EC2 instance, in the final step, you can create a new private key pair and download it as pem file. For example, I have one call `my 阅读全文
摘要:
ORMS allow us to easily switch to a different dialect of SQL (e.g. PostgreSQL, MySQL), without having to modify the code that interacts with the datab 阅读全文
摘要:
Intro to Object-Relational Maps (ORM) We'll be using an ORM called Sequelize to manage the connection to our database. We'll cover the basics in this 阅读全文
摘要:
Features and Modularity In this concept, we dive into splitting our code into logical "features". This is a way of describing modular programming wher 阅读全文
摘要:
CORS: Cross Origin Resource Sharing: defines how a client can interact with a resource, and what the client can and cannot do with that resource. Sett 阅读全文
摘要:
For example client want to upload some large file to our FileSotre, for example S3. Normally we might thinking about Send file to our server Our serve 阅读全文
摘要:
For examlpe, we have two tables: cars: make: For cars table, we want to know 'make_name' instead of 'make_id', we can do with 'join' two tables. In or 阅读全文
摘要:
In project, we can have three branches such as dev stage master Every developer can merge their code into 'dev' branch. 'stage' & 'master' will be loc 阅读全文