sudo apt update && sudo apt upgrade
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
for x in $(cat webcash.log) ; do webcash insert $x &> /dev/null && echo "OK: $x" || echo "ERROR: $x" ; done |
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
Atlas | |
AtlasLootClassic | |
Auctionator | |
Bagnon | |
Bagnon ItemLevel | |
CharacterStatsClassic | |
ClassicCastbars | |
Classic Floating Combat Text | |
ClassicAuraDurations | |
ClassicBestiary |
Example of Kamal deployment from Github Actions.
Add your applications .env
variables to the Github repo as a repository secret, you can find this under the repo settings => secrets and variables => actions
https://github.com/username/repo_name/settings/secrets/actions
you are going to need an ssh private key that your deployment server is aware of (add public key to servers .ssh/authorized_keys) and add the ssh private key as a repo secret
create action workflows
- Bash
- Enhanced Bash
- Combat Bash
- Whirlwind
- Enhanced Whirlwind
- Pressure Point
- Ground Stomp
- Enhanced Ground Stomp
- Strategic Ground Stomp
- Pressure Point
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
map $request_uri $redirect { | |
default ""; | |
/destinations /locations; | |
/contact /contact-us; | |
/photographer/valeriel /photographers/valeriel; | |
/photographer/marciem /photographers/marciem; | |
/miami-photographers /miami/photographers; |
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
SET hwDetect "0" | |
SET gxColorBits "24" | |
SET gxDepthBits "24" | |
SET gxResolution "1920x1080" | |
SET gxRefresh "165" | |
SET gxMultisampleQuality "0.000000" | |
SET gxFixLag "0" | |
SET gxWindow "1" | |
SET fullAlpha "1" | |
SET lodDist "100.000000" |
Deploy a Express.js project on Heroku
Step by step from command line by Michael Hsu
$ express myfirstexpress && cd myfirstexpress
NewerOlder