first step you need to access ssh to the server
find / -iname index.html.erb
you might see the path for greenlight, like
/var/lib/docker/overlay2/dae293****/diff/usr/src/app/app/views/shared/
you could access the file and get the path and apply changes to the html directly, next don’t forget to restart the docker to apply the new html changes
cd ~/greenlight/ docker-compose down docker-compose up -d
You might use the following command on certain directories
grep -R "statement" | cut -d ":" -f 1 grep -R "btn-gradient" | cut -d ":" -f 1
wait few seconds then you ready to go!
Leave a Reply