Last active
August 29, 2015 14:11
-
-
Save nicoandrade/2f2be5295d8ecd22fbca to your computer and use it in GitHub Desktop.
Upload Ghost Theme (DigitalOcean)
This file contains 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
scp /Applications/MAMP/htdocs/Ghost/test/content/themes/teller.zip [email protected]:/var/www/ghost/content/themes/. | |
//Despues | |
ssh [email protected] | |
//Ir a la carpeta de Themes | |
cd /var/www/ghost/content/themes | |
//Unzip el archivo | |
unzip NameOfTheme.zip | |
//Modificar propiedad de la carpeta | |
chown -R ghost:ghost FOLDER | |
//Eliminar el ZIP | |
rm NameOfTheme.zip | |
//Eliminar carpeta mac (si la crea) | |
rm -r __MACOSX | |
//Resetear Ghost | |
service ghost restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment