Compare commits
No commits in common. "156759d1cd5c0d7416b48fdedd22504952341d2d" and "6dd3e4c7d6e369b988d6eeaaed32dfdbb67c5389" have entirely different histories.
156759d1cd
...
6dd3e4c7d6
7
.gitignore
vendored
7
.gitignore
vendored
@ -58,10 +58,3 @@ build-iPhoneSimulator/
|
|||||||
|
|
||||||
# Local database storage
|
# Local database storage
|
||||||
data/raven.db
|
data/raven.db
|
||||||
|
|
||||||
# Node modules for Grunt.js
|
|
||||||
node_modules/
|
|
||||||
|
|
||||||
# Compiled CSS and JS
|
|
||||||
public/css/
|
|
||||||
public/js/
|
|
||||||
|
4
Gemfile
4
Gemfile
@ -5,7 +5,3 @@ gem 'puma', '~> 6.0'
|
|||||||
|
|
||||||
gem 'sequel', '~> 5.63'
|
gem 'sequel', '~> 5.63'
|
||||||
gem 'sqlite3', '~> 1.5'
|
gem 'sqlite3', '~> 1.5'
|
||||||
|
|
||||||
# Use rerun gem to auto-reload app
|
|
||||||
gem 'rerun'
|
|
||||||
|
|
||||||
|
13
Gemfile.lock
13
Gemfile.lock
@ -1,11 +1,6 @@
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
ffi (1.15.5)
|
|
||||||
ffi (1.15.5-x64-mingw-ucrt)
|
|
||||||
listen (3.7.1)
|
|
||||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
||||||
rb-inotify (~> 0.9, >= 0.9.10)
|
|
||||||
mustermann (3.0.0)
|
mustermann (3.0.0)
|
||||||
ruby2_keywords (~> 0.0.1)
|
ruby2_keywords (~> 0.0.1)
|
||||||
nio4r (2.5.8)
|
nio4r (2.5.8)
|
||||||
@ -14,11 +9,6 @@ GEM
|
|||||||
rack (2.2.4)
|
rack (2.2.4)
|
||||||
rack-protection (3.0.4)
|
rack-protection (3.0.4)
|
||||||
rack
|
rack
|
||||||
rb-fsevent (0.11.2)
|
|
||||||
rb-inotify (0.10.1)
|
|
||||||
ffi (~> 1.0)
|
|
||||||
rerun (0.13.1)
|
|
||||||
listen (~> 3.0)
|
|
||||||
ruby2_keywords (0.0.5)
|
ruby2_keywords (0.0.5)
|
||||||
sequel (5.63.0)
|
sequel (5.63.0)
|
||||||
sinatra (3.0.4)
|
sinatra (3.0.4)
|
||||||
@ -27,16 +17,13 @@ GEM
|
|||||||
rack-protection (= 3.0.4)
|
rack-protection (= 3.0.4)
|
||||||
tilt (~> 2.0)
|
tilt (~> 2.0)
|
||||||
sqlite3 (1.5.4-x64-mingw-ucrt)
|
sqlite3 (1.5.4-x64-mingw-ucrt)
|
||||||
sqlite3 (1.5.4-x86_64-linux)
|
|
||||||
tilt (2.0.11)
|
tilt (2.0.11)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
x64-mingw-ucrt
|
x64-mingw-ucrt
|
||||||
x86_64-linux
|
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
puma (~> 6.0)
|
puma (~> 6.0)
|
||||||
rerun
|
|
||||||
sequel (~> 5.63)
|
sequel (~> 5.63)
|
||||||
sinatra (~> 3.0)
|
sinatra (~> 3.0)
|
||||||
sqlite3 (~> 1.5)
|
sqlite3 (~> 1.5)
|
||||||
|
41
Gruntfile.js
41
Gruntfile.js
@ -1,41 +0,0 @@
|
|||||||
module.exports = function(grunt) {
|
|
||||||
|
|
||||||
// Project configuration.
|
|
||||||
grunt.initConfig({
|
|
||||||
pkg: grunt.file.readJSON('package.json'),
|
|
||||||
|
|
||||||
sass: {
|
|
||||||
dist: {
|
|
||||||
options: {
|
|
||||||
style: 'compressed'
|
|
||||||
},
|
|
||||||
files: [{
|
|
||||||
expand: true,
|
|
||||||
cwd: 'assets/styles',
|
|
||||||
src: ['**/*.scss'],
|
|
||||||
dest: 'public/css',
|
|
||||||
ext: '.css'
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
watch: {
|
|
||||||
css: {
|
|
||||||
files: ['assets/styles/**/*.scss'],
|
|
||||||
tasks: ['sass'],
|
|
||||||
options: {
|
|
||||||
atBegin: true,
|
|
||||||
spawn: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Load plugins.
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-sass');
|
|
||||||
|
|
||||||
// CLI tasks.
|
|
||||||
grunt.registerTask('default', ['sass']);
|
|
||||||
|
|
||||||
};
|
|
@ -1,3 +0,0 @@
|
|||||||
body{
|
|
||||||
background: lightgrey;
|
|
||||||
}
|
|
3064
package-lock.json
generated
3064
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
33
package.json
33
package.json
@ -1,33 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "raven",
|
|
||||||
"version": "0.1.0",
|
|
||||||
"description": "Self-hosted inventory tracker",
|
|
||||||
"main": "index.js",
|
|
||||||
"scripts": {
|
|
||||||
"grunt": "grunt",
|
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "gitea@git.metaunix.net:Metaunix/raven.git"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"inventory",
|
|
||||||
"tracking"
|
|
||||||
],
|
|
||||||
"author": "Gregory Ballanine <gballantine@metaunix.net>",
|
|
||||||
"uploaders": [
|
|
||||||
{
|
|
||||||
"name": "Gregory Ballantine",
|
|
||||||
"email": "gballantine@metaunix.net"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "BSD-2-Clause",
|
|
||||||
"devDependencies": {
|
|
||||||
"grunt": "^1.5.3",
|
|
||||||
"grunt-cli": "^1.4.3",
|
|
||||||
"grunt-contrib-sass": "^2.0.0",
|
|
||||||
"grunt-contrib-watch": "^1.1.0",
|
|
||||||
"sass": "^1.55.0"
|
|
||||||
}
|
|
||||||
}
|
|
@ -5,7 +5,6 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title><%= title %> | Raven</title>
|
<title><%= title %> | Raven</title>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
||||||
<link rel="stylesheet" href="/css/kraken.css">
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
Reference in New Issue
Block a user