AWS
arunpatala opened this issue · 3 comments
arunpatala commented
AWS
mrgloom commented
Hello, can you provide link/example how to create demo app on AWS like yours? I need this for some computer vision / machine learning demos.
arunpatala commented
Hey sure I can help if you find any difficulty. If you need any particular help ping me at arunpatala@gmail.com
I was using AWS free instance using ubuntu/nodejs/express.
Here is a broad overview of steps to take. You can google them and find many tutorials of each step.
- Create aws account (need credit information but there are some free instances)
- Create EC2 instance (I used ubuntu 64 bit linux)
- Create Key pair for logging into the system (ssh -i ubuntu.pem ubuntu@ip-address)
- Create public dns for your instance
- Install nodejs and express
- install other computer vision tools (like torch)
- use nodejs to create webserver
- use multer module for posting image
arunpatala commented
Dont forget to open port 80 after installing webserver