Skip to content

Instantly share code, notes, and snippets.

View discoverlance-com's full-sized avatar
🏠
Focused

Lance Armah-Abraham discoverlance-com

🏠
Focused
View GitHub Profile
@discoverlance-com
discoverlance-com / phpenv-install.md
Created December 6, 2023 12:22 — forked from sergeyklay/phpenv-install.md
Multiple PHP versions using phpenv and php-build

Multiple PHP versions using phpenv and php-build

Install dependecies

Debian/Ubuntu users

sudo apt install \
  autoconf \
  bison \
@discoverlance-com
discoverlance-com / context.ts
Created March 9, 2023 17:03 — forked from thetutlage/context.ts
Unploy Server API Abstraction for AdonisJS
import Up from './index'
declare module '@ioc:Adonis/Core/HttpContext' {
interface HttpContextContract {
up: Up
}
}