Skip to content

Instantly share code, notes, and snippets.

View jango-blockchained's full-sized avatar

jango_blockchained jango-blockchained

  • Kassel, Germany
View GitHub Profile
@revant
revant / pwd.yml
Last active January 7, 2023 14:30
ERPNext version-14 Play With Docker
version: "3"
services:
backend:
image: frappe/erpnext:v14.12.0
deploy:
restart_policy:
condition: on-failure
volumes:
- sites:/home/frappe/frappe-bench/sites
@snikch
snikch / .env.example
Last active May 20, 2021 12:46
Chia Network Docker Compose
PLOTS_TMP_DIR=/mnt/scratch/plots
PLOTS_FINAL_DIR=/mnt/storage/plots
@gffcoutinho
gffcoutinho / install.sh
Last active June 18, 2024 19:50 — forked from ziadoz/install.sh
Install Chrome, ChromeDriver and Selenium on Ubuntu 18.04
#!/usr/bin/env bash
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04
# Versions
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`