Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
# frozen_string_literal: true | |
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gem "rails", path: '../../rails' |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gem "rails", github: "rails/rails", branch: "main" | |
gem "capybara" | |
gem "selenium-webdriver" | |
gem "selenium" | |
gem "pry" | |
gem "rack", "2.2.4" |
source "http://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gem "puma", "~> 5.0" | |
gem "rack", ENV["RACK_2"] ? "~> 2.2.7" : "~> 3.0.7" | |
gem "rackup" |
# frozen_string_literal: true | |
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gem "rails", github: "rails/rails", branch: "main" |
These are my notes on instaling NixOS 16.03 on a Lenovo ThinkPad X1 Carbon (4th generation) with an encrypted root file system using UEFI.
Most of this is scrambled from the following pages:
[0] > bin/shell | |
(xylio-pbndb)[development]:~/.../internal/pbndb> cd api | |
(xylio-pbndb)[development]:~/.../pbndb/api> bundle install --path vendor/bundle/ | |
Fetching gem metadata from https://rubygems.org/.......... | |
Using rake 12.3.1 | |
Using concurrent-ruby 1.0.5 | |
Using i18n 1.0.0 | |
Using minitest 5.11.3 |
#!/bin/bash | |
set -e | |
set -u | |
set -x | |
# Needs: | |
# - slop | |
# - ffmpeg | |
################################################## |
From 8328cf989bd9141451910f4c8746eb00a4b1b07a Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Jo=C3=A9=20Dupuis?= <[email protected]> | |
Date: Thu, 10 Mar 2016 19:55:05 -0500 | |
Subject: [PATCH] Prevent systemd from killing the service on update | |
--- | |
PKGBUILD | 4 ++-- | |
crashplan-pro.service | 1 + | |
2 files changed, 3 insertions(+), 2 deletions(-) |