This repository is only to me learning Vue.js. =]
Install Node.js and npm package manager and follow the instructions in fakegram and fakegram-api.
Install docker and docker-compose, wait the install process finish, so execute in your terminal:
# Build docker images, this command is only necessary at first time
sudo docker-compose build
# Start required containers
sudo docker-compose up -d
# Open terminal session on fakegram container
sudo docker-compose exec fakegram bash
Now you should are inside the fakegram container, you can access this app on your web browser for that, execute the commands below and access http://localhost:8080.
cd fakegram
npm install
npm run dev
For stop and remove the containers execute the command below:
sudo docker-compose down