I hereby claim:
- I am bacarini on github.
- I am bacarini (https://keybase.io/bacarini) on keybase.
- I have a public key ASC1xhENiRu9cJDI9REX52GPjPXm3cQND9EwUYyI86OIJgo
To claim this, I am signing this object:
{ | |
"info": { | |
"_postman_id": "c922075b-1573-4bf3-8108-3d758e2c3d3b", | |
"name": "WIB API for lockers", | |
"description": "API available for WIB Machinery\n\nContact Support:\n Email: [email protected]", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | |
"_exporter_id": "95335", | |
"_collection_link": "https://bounce-lockers.postman.co/workspace/Bounce-Lockers~3c37237d-589d-44bd-89d7-da4e6ece9e97/collection/95335-c922075b-1573-4bf3-8108-3d758e2c3d3b?action=share&source=collection_link&creator=95335" | |
}, | |
"item": [ |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: n8n-deployment | |
namespace: standard | |
labels: &labels | |
app: n8n | |
component: deployment | |
spec: |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
class Comment < Sequel::Model | |
set_dataset MyApp::SequelDb.alt_db[:comments] | |
end |
RSpec.configure do |config| | |
config.before(:suite) do | |
DatabaseCleaner[:sequel].strategy = :transaction | |
end | |
config.before(:each) do | |
DatabaseCleaner[:sequel, {:connection => MyApp::SequelDb.main_db}].start | |
DatabaseCleaner[:sequel, {:connection => MyApp::SequelDb.alt_db}].start | |
end |
MyApp::SequelDb["SELECT * FROM posts WITH (NOLOCK);"].all |
require 'sequel' | |
require_relative '../../config/initializers/sequel_init' | |
namespace :db do | |
desc 'Load the seed data from db/seeds.rb' | |
task seed: :environment do | |
require 'sequel/extensions/seed' | |
Sequel.extension :seed | |
Sequel::Seeder.apply(MyApp::SequelDb.main_db, "db/seeds") |
class Post < Sequel::Model(:posts) | |
end |
before_fork do |_, _| | |
MyApp::SequelDb.disconnect_all | |
end | |
after_fork do |_, _| | |
MyApp::SequelDb.start_connections | |
end |