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:
| import os, json, re, pathlib, requests | |
| from urllib.parse import urljoin | |
| METABASE_HOST = os.environ.get("METABASE_HOST", "https://bounce.metabaseapp.com/") | |
| API_KEY = os.environ.get("METABASE_API_KEY") | |
| TARGET_COLL_NAME= os.environ.get("METABASE_COLLECTION_NAME") | |
| TARGET_COLL_ID = os.environ.get("METABASE_COLLECTION_ID") | |
| OUTPUT_DIR = os.environ.get("OUTPUT_DIR", "./metabase_export") | |
| session = requests.Session() |
| openapi: 3.0.1 | |
| info: | |
| title: "Bounce API" | |
| description: "API documentation for Bounce locker events integration." | |
| version: "1.0.0" | |
| servers: | |
| - url: "https://bounce-api-preview-deploy-test.onrender.com" | |
| description: "Bounce API preview environment" | |
| - url: "https://luggage-storage-api.usebounce.com" | |
| description: "Bounce API production environment" |
| { | |
| "info": { | |
| "_postman_id": "c922075b-1573-4bf3-8108-3d758e2c3d3b", | |
| "name": "WIB API for lockers", | |
| "description": "API available for WIB Machinery\n\nContact Support:\n Email: contact@snippets.local", | |
| "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") |