All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box |
|---|---|
aix |
✅ |
android |
✅ |
| <?php | |
| namespace Abz; | |
| /** | |
| * IP Configurator Helper written by simple PHP | |
| * for 'mini device' such as: raspberry pi, cubieboard etc | |
| * | |
| * USAGES: | |
| * ======= |
| .PHONY: install uninstall test set-default | |
| test: | |
| sudo apt install plymouth-x11 | |
| sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit | |
| uninstall: | |
| rm -rv /usr/share/plymouth/themes/first || true | |
| install: uninstall |
| 'use strict'; | |
| const authentication = require('feathers-authentication'); | |
| const jwt = require('feathers-authentication-jwt'); | |
| const local = require('feathers-authentication-local'); | |
| const oauth2 = require('feathers-authentication-oauth2'); | |
| const GithubStrategy = require('passport-github'); | |
| // Bring in the oauth-handler | |
| const makeHandler = require('./oauth-handler'); |