Skip to content

Instantly share code, notes, and snippets.

View luminuszz's full-sized avatar
Let's code !!

Davi Ribeiro luminuszz

Let's code !!
View GitHub Profile
@cbedroid
cbedroid / React-Native-Missing-KeyStore.md
Last active May 3, 2024 10:57
React-Native Generating SigningReport (Error: Missing keystore)

Fix Firebase Missing Keystore for React Native App

Generate new keystore certificate

For more info, visit https://rnfirebase.io/

 # Open your terminal 
 # Enter the following to generate your missing key. (if fails, try elevating your privileges with `sudo`).
 
@jukkatupamaki
jukkatupamaki / 20190417131115_test-setup.ts
Last active June 21, 2023 07:03
How to use Knex.js in a TypeScript project
import { Knex } from 'knex'
export async function up(knex: Knex): Promise<any> {
await knex.schema.createTable('test_setup', (table: Knex.TableBuilder) => {
table.integer('foobar');
});
}
export async function down(knex: Knex): Promise<any> {
await knex.schema.dropTable('test_setup');