Skip to content

Instantly share code, notes, and snippets.

@fulcain
fulcain / ftp-accout-github
Last active August 1, 2023 15:05
main.yml file for connecting github to host using ftp account
on:
push:
branches:
- main
name: Deploy website on push
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
@fulcain
fulcain / settings.json
Last active January 21, 2024 17:04
Vim related settings in vscode
{
//exludes fies & folders in search indexing
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
//exludes fies & folders for watcher service
"files.watcherExclude": {
@fulcain
fulcain / yml
Created January 6, 2024 19:21
github yml file for React deploy
name: Deploy to GitHub Pages
on:
push:
branches:
- main # Replace with your main branch name
jobs:
deploy:
runs-on: ubuntu-latest

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example