Skip to content

Commit 79ad9d6

Browse files
committed
Using storm instead of sqlite
Signed-off-by: Vishal Rana <[email protected]>
1 parent 174eb82 commit 79ad9d6

File tree

139 files changed

+12984
-220330
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+12984
-220330
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
.DS_Store
22
*.db
3-
build
3+
dist
44
public
55
node_modules
66
_test
77
.vscode
88
.idea
9+
*.iml

.goreleaser.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
build:
2+
main: cmd/armor/main.go
3+
goos:
4+
- darwin
5+
- linux
6+
- windows
7+
goarch:
8+
- amd64
9+
- 386
10+
- arm
11+
- arm64
12+
goarm:
13+
- 6
14+
- 7
15+
16+
nfpm:
17+
formats:
18+
- deb
19+
- rpm
20+
replacements:
21+
amd64: 64-bit
22+
386: 32-bit
23+
vendor: "LabStack"
24+
homepage: "https://armor.labstack.com"
25+
maintainer: "Vishal Rana <[email protected]>"
26+
description: "Uncomplicated, modern HTTP server"
27+
license: "MIT"
28+
29+
archive:
30+
format: tgz
31+
format_overrides:
32+
- goos: windows
33+
format: zip
34+
replacements:
35+
amd64: 64-bit
36+
386: 32-bit
37+
darwin: macos
38+
files:
39+
- README.md
40+
- LICENSE
41+
42+
checksum:
43+
name_template: "{{ .ProjectName }}_checksum.txt"
44+
45+
release:
46+
draft: true

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM frolvlad/alpine-glibc
1+
FROM alpine:3.7
22

33
# https://letsencrypt.org
44
RUN apk add --no-cache ca-certificates
55

6-
COPY build/armor-*-linux-amd64 /usr/local/bin/armor
6+
COPY dist/linux_amd64/armor /usr/local/bin
77

8-
ENTRYPOINT ["armor"]
8+
ENTRYPOINT ["armor"]

Gopkg.lock

+23-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
name = "github.com/Knetic/govaluate"
3030
version = "3.0.0"
3131

32+
[[constraint]]
33+
name = "github.com/asdine/storm"
34+
version = "2.1.0"
35+
3236
[[constraint]]
3337
name = "github.com/docker/libkv"
3438
version = "0.2.1"
@@ -65,10 +69,6 @@
6569
branch = "master"
6670
name = "github.com/lib/pq"
6771

68-
[[constraint]]
69-
name = "github.com/mattn/go-sqlite3"
70-
version = "1.6.0"
71-
7272
[[constraint]]
7373
branch = "master"
7474
name = "github.com/mitchellh/go-homedir"

Makefile

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
IMAGE = labstack/armor
2-
VERSION = 0.4.4
2+
VERSION = 0.4.5
33

4-
clean:
5-
rm -rf build
6-
7-
build: clean
8-
xgo --targets=darwin-10.8/amd64,linux/amd64,linux/arm-6,linux/arm-7,linux/arm64,windows-8.0/amd64 --pkg cmd/armor -out build/armor-$(VERSION) github.com/labstack/armor
4+
publish:
5+
git tag $(VERSION)
6+
git push origin --tags
7+
goreleaser --rm-dist
98
docker build -t $(IMAGE):$(VERSION) -t $(IMAGE) .
10-
11-
push: build
129
docker push $(IMAGE):$(VERSION)
1310
docker push $(IMAGE):latest
1411

15-
.PHONY: clean build push
12+
.PHONY: publish

admin/ui/build/build.js

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
'use strict'
2+
require('./check-versions')()
3+
4+
process.env.NODE_ENV = 'production'
5+
6+
const ora = require('ora')
7+
const rm = require('rimraf')
8+
const path = require('path')
9+
const chalk = require('chalk')
10+
const webpack = require('webpack')
11+
const config = require('../config')
12+
const webpackConfig = require('./webpack.prod.conf')
13+
14+
const spinner = ora('building for production...')
15+
spinner.start()
16+
17+
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
18+
if (err) throw err
19+
webpack(webpackConfig, (err, stats) => {
20+
spinner.stop()
21+
if (err) throw err
22+
process.stdout.write(stats.toString({
23+
colors: true,
24+
modules: false,
25+
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
26+
chunks: false,
27+
chunkModules: false
28+
}) + '\n\n')
29+
30+
if (stats.hasErrors()) {
31+
console.log(chalk.red(' Build failed with errors.\n'))
32+
process.exit(1)
33+
}
34+
35+
console.log(chalk.cyan(' Build complete.\n'))
36+
console.log(chalk.yellow(
37+
' Tip: built files are meant to be served over an HTTP server.\n' +
38+
' Opening index.html over file:// won\'t work.\n'
39+
))
40+
})
41+
})

admin/ui/build/check-versions.js

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
'use strict'
2+
const chalk = require('chalk')
3+
const semver = require('semver')
4+
const packageConfig = require('../package.json')
5+
const shell = require('shelljs')
6+
7+
function exec (cmd) {
8+
return require('child_process').execSync(cmd).toString().trim()
9+
}
10+
11+
const versionRequirements = [
12+
{
13+
name: 'node',
14+
currentVersion: semver.clean(process.version),
15+
versionRequirement: packageConfig.engines.node
16+
}
17+
]
18+
19+
if (shell.which('npm')) {
20+
versionRequirements.push({
21+
name: 'npm',
22+
currentVersion: exec('npm --version'),
23+
versionRequirement: packageConfig.engines.npm
24+
})
25+
}
26+
27+
module.exports = function () {
28+
const warnings = []
29+
30+
for (let i = 0; i < versionRequirements.length; i++) {
31+
const mod = versionRequirements[i]
32+
33+
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
34+
warnings.push(mod.name + ': ' +
35+
chalk.red(mod.currentVersion) + ' should be ' +
36+
chalk.green(mod.versionRequirement)
37+
)
38+
}
39+
}
40+
41+
if (warnings.length) {
42+
console.log('')
43+
console.log(chalk.yellow('To use this template, you must update following to modules:'))
44+
console.log()
45+
46+
for (let i = 0; i < warnings.length; i++) {
47+
const warning = warnings[i]
48+
console.log(' ' + warning)
49+
}
50+
51+
console.log()
52+
process.exit(1)
53+
}
54+
}

admin/ui/build/logo.png

6.69 KB
Loading

admin/ui/build/utils.js

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
'use strict'
2+
const path = require('path')
3+
const config = require('../config')
4+
const ExtractTextPlugin = require('extract-text-webpack-plugin')
5+
const packageConfig = require('../package.json')
6+
7+
exports.assetsPath = function (_path) {
8+
const assetsSubDirectory = process.env.NODE_ENV === 'production'
9+
? config.build.assetsSubDirectory
10+
: config.dev.assetsSubDirectory
11+
12+
return path.posix.join(assetsSubDirectory, _path)
13+
}
14+
15+
exports.cssLoaders = function (options) {
16+
options = options || {}
17+
18+
const cssLoader = {
19+
loader: 'css-loader',
20+
options: {
21+
sourceMap: options.sourceMap
22+
}
23+
}
24+
25+
const postcssLoader = {
26+
loader: 'postcss-loader',
27+
options: {
28+
sourceMap: options.sourceMap
29+
}
30+
}
31+
32+
// generate loader string to be used with extract text plugin
33+
function generateLoaders (loader, loaderOptions) {
34+
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
35+
36+
if (loader) {
37+
loaders.push({
38+
loader: loader + '-loader',
39+
options: Object.assign({}, loaderOptions, {
40+
sourceMap: options.sourceMap
41+
})
42+
})
43+
}
44+
45+
// Extract CSS when that option is specified
46+
// (which is the case during production build)
47+
if (options.extract) {
48+
return ExtractTextPlugin.extract({
49+
use: loaders,
50+
fallback: 'vue-style-loader'
51+
})
52+
} else {
53+
return ['vue-style-loader'].concat(loaders)
54+
}
55+
}
56+
57+
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
58+
return {
59+
css: generateLoaders(),
60+
postcss: generateLoaders(),
61+
less: generateLoaders('less'),
62+
sass: generateLoaders('sass', { indentedSyntax: true }),
63+
scss: generateLoaders('sass'),
64+
stylus: generateLoaders('stylus'),
65+
styl: generateLoaders('stylus')
66+
}
67+
}
68+
69+
// Generate loaders for standalone style files (outside of .vue)
70+
exports.styleLoaders = function (options) {
71+
const output = []
72+
const loaders = exports.cssLoaders(options)
73+
74+
for (const extension in loaders) {
75+
const loader = loaders[extension]
76+
output.push({
77+
test: new RegExp('\\.' + extension + '$'),
78+
use: loader
79+
})
80+
}
81+
82+
return output
83+
}
84+
85+
exports.createNotifierCallback = () => {
86+
const notifier = require('node-notifier')
87+
88+
return (severity, errors) => {
89+
if (severity !== 'error') return
90+
91+
const error = errors[0]
92+
const filename = error.file && error.file.split('!').pop()
93+
94+
notifier.notify({
95+
title: packageConfig.name,
96+
message: severity + ': ' + error.name,
97+
subtitle: filename || '',
98+
icon: path.join(__dirname, 'logo.png')
99+
})
100+
}
101+
}

0 commit comments

Comments
 (0)