Skip to content

Commit a6b6e3c

Browse files
Christian PippertChristian Pippert
Christian Pippert
authored and
Christian Pippert
committed
add a frontend powerd by angular
1 parent f10b8fd commit a6b6e3c

Some content is hidden

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

45 files changed

+1692
-46
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
"# sensors"
1+
# sensors
2+
3+
This small application should show how sensors on a raspberry pi can be displayed in an web frontend powered by AngularJS.
4+
5+
6+
7+
> Notice: This project is just in progress and is not working

app/views/error.jade

-6
This file was deleted.

app/views/index.jade

-6
This file was deleted.

app/views/layout.jade

-13
This file was deleted.

public/css/style.css

-7
This file was deleted.

public/css/style.less

-8
This file was deleted.

sensors-client/.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

sensors-client/.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

sensors-client/.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

sensors-client/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules
2+
/dist
3+
/.tmp
4+
/.sass-cache
5+
/bower_components

sensors-client/.jshintrc

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"bitwise": true,
3+
"browser": true,
4+
"curly": true,
5+
"eqeqeq": true,
6+
"esnext": true,
7+
"latedef": true,
8+
"noarg": true,
9+
"node": true,
10+
"strict": true,
11+
"undef": true,
12+
"unused": true,
13+
"globals": {
14+
"angular": false
15+
}
16+
}

sensors-client/.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sudo: false
2+
language: node_js
3+
node_js:
4+
- 'iojs'
5+
- '0.12'
6+
- '0.10'
7+
before_script:
8+
- 'npm install -g bower grunt-cli'
9+
- 'bower install'

sensors-client/.yo-rc.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)