This file contains hidden or 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
#!/bin/bash | |
# Replace with your personal access token | |
GITHUB_TOKEN="your-personal-access-token" | |
# Replace with the repository owner's name | |
OWNER="your-username" | |
# Replace with the repository name | |
REPO="your-repo-name" | |
# Get the list of workflow runs |
This file contains hidden or 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
app = "mysql8" | |
primary_region = "sin" | |
[build] | |
image = "mysql:8" | |
[env] | |
MYSQL_DATABASE = "db_test" | |
MYSQL_USER = "non_root_user" |
This file contains hidden or 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
app = 'npm-on-fly' | |
primary_region = 'sin' # (Singapore) choose the region closest to your users | |
[build] | |
image = 'jlesage/nginx-proxy-manager:latest' | |
[env] | |
DB_MYSQL_HOST = 'your.db.host' | |
DB_MYSQL_NAME = 'db_npm' | |
DB_MYSQL_PASSWORD = 'awdkwakjdbakwbdkawbd' # You can also use a fly secret here to keep your credentials safe |
This file contains hidden or 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
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix |
This file contains hidden or 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
sudo yum install libusbx-devel libudev-devel | |
https://github.com/wroberts/rogauracore.git | |
### Change user shell to zsh ### | |
its works : sudo usermod --shell /path/to/shell < user > | |
----------- sudo usermod --shell $(which zsh) $USER ------------ |