My own website https://www.jovian-hersemeule.eu/projets/pandoc_site/content.html
DricomDragon acb47b2f78 :wrench: Make deploy script working with sftp | 1 tahun lalu | |
---|---|---|
src | 1 tahun lalu | |
undeployed | 1 tahun lalu | |
.gitignore | 1 tahun lalu | |
.lvimrc | 4 tahun lalu | |
README.md | 1 tahun lalu | |
example.env.local | 1 tahun lalu | |
makefile | 1 tahun lalu |
Jovian portfolio and resume
Start a standalone PHP server on port 8080.
Run undeployed/scripts/serve-home.sh
Check your work on standalone PHP server.
Can be used to test the deployement script like updating the version number.
You may need to manually start apache first with service apache2 start
.
DIST_DIR=/var/www/html make -e dist
Check your work on local apache server.
You can set your custom env vars in a .env.local
file and injecting them with the source
command. See example.env.local to see the useful vars to implement.
source .env.local
make -e dist
Merge your branch into the master branch and deploy from master
.
Retrieve the last version with git describe
.
Increment the version number vX.Y.Z
:
Use a annotated tag with git tag -a vX.Y.Z
.
You can deploy on local apache before pushing your code to production.
Run undeployed/scripts/deploy-to-ovh.sh