Skip to content

Commit

Permalink
initial_commit
Browse files Browse the repository at this point in the history
  • Loading branch information
auth committed Sep 24, 2019
0 parents commit 1d8d87d
Show file tree
Hide file tree
Showing 7 changed files with 448 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules/
1 change: 1 addition & 0 deletions boops/.gitkeep
@@ -0,0 +1 @@
a polite request to git to keep this empty directory
14 changes: 14 additions & 0 deletions config/snootauth.service
@@ -0,0 +1,14 @@
[Unit]
Description=Snoot Auth OpenSSH Daemon
Wants=sshdgenkeys.service
After=sshdgenkeys.service
After=network.target

[Service]
ExecStart=/usr/bin/sshd -Df /snoots/auth/auth.snoot.club/config/sshd
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=always

[Install]
WantedBy=multi-user.target
7 changes: 7 additions & 0 deletions index.js
@@ -0,0 +1,7 @@
let {send} = require("micro")

function await

module.exports = (request, response) => {
send(
}
328 changes: 328 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions package.json
@@ -0,0 +1,18 @@
{
"name": "auth-application",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"install": "boop",
"watch": "boop",
"build": "boop",
"start": "micro -l unix:sock"
},
"author": "auth <auth@snoot.club>",
"license": "GPL-3.0+",
"description": "auth application on snoot.club",
"dependencies": {
"@snootclub/boop": "^0.0.14",
"micro": "^9.3.3"
}
}

0 comments on commit 1d8d87d

Please sign in to comment.