This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
DO NOT EDIT! --> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p> | |
<DT><H3 ADD_DATE="1604897638" LAST_MODIFIED="0" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks bar</H3> | |
<DL><p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create project folder | |
mkdir -p code/fileops | |
Initialize virtualenv | |
cd code/fileops | |
pipenv -python 3.9 | |
pipenv shell | |
cat Pipefile | |
git init | |
git status |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You can choose to use any scripting language to automate (great if you could do in Ansible/ Terraform). | |
Use the free-tier resources from AWS. Feel free to comment your code and/or put detailed information in the instructions. | |
The exercise will be 2.5 hours. | |
## Following is the goals of the exercise: | |
1. Demonstrate your hands-on skills, you can code for building cloud hosted solution | |
2. Demonstrate that you can think of other cross-cutting-concerns like security | |
3. A nice segue to our discussion after you submit the code |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -d -it centos:7 sh | |
#Dockerfile | |
----------------------------------------------- | |
FROM ubuntu:14.04 | |
RUN \ | |
apt-get update && \ | |
apt-get -y install apache2 |