Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Commit 80f4de8

Browse files
committed
initialized angular frontend
1 parent c169ef1 commit 80f4de8

158 files changed

Lines changed: 72593 additions & 219 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ build/*
4040
/vendor
4141
/storage.db
4242
/storage.db.lock
43+
44+
vendor
45+
main
46+
.DS_Store

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@ This is a service for your personal touchscreen at home. You can display and con
33

44
## Requirements for compiling
55
* [Go](https://golang.org/) to compile the backend
6-
* [Glide](https://golang.org/) to load backend dependencies
7-
* [Bower](https://bower.io/) to load the frontend dependencies
6+
* [Glide](https://github.com/Masterminds/glide) to load backend dependencies
7+
* [Node.js](https://nodejs.org)
8+
* If you are using the (old) AngularJS-Forntend:
9+
- [Bower](https://bower.io/) to load the AngularJS frontend dependencies
810

911
## Compile it yourself
1012
* go get this project
1113
+ go get github.com/homescreenrocks/homescreen
1214
* load dependencies
1315
+ `glide install` the backend dependencies from main directory
14-
+ `bower install` the frontend dependencies from core/frontend folder
16+
+ For the Angular-Frontend: `npm install` the frontend dependencies from core/app folder
17+
+ For the (old) AngularJS-Frontend: `bower install` the frontend dependencies from core/angularjs folder
1518
* get the plugins you want
1619
+ go get github.com/homescreenrocks/homescreen-plugin-example
1720
* compile and start the homescreen core
18-
+ execute in the main directory: `go build core\backend\app.go && app`
21+
+ execute in the main directory: `go build core/backend/app.go && ./app`
1922
* compile and start a plugin
20-
+ cd to the plugin: `go build example\main.go && main http://localhost:3000`
23+
+ cd to the plugin: `go build example/main.go && ./main http://localhost:3000`
2124

2225
> we should provide a more easy way of usage :)
2326

app

9.77 MB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "angular-aria",
3+
"version": "1.5.11",
4+
"license": "MIT",
5+
"main": "./angular-aria.js",
6+
"ignore": [],
7+
"dependencies": {
8+
"angular": "1.5.11"
9+
},
10+
"homepage": "https://github.com/angular/bower-angular-aria",
11+
"_release": "1.5.11",
12+
"_resolution": {
13+
"type": "version",
14+
"tag": "v1.5.11",
15+
"commit": "a90418459eb67c49673de35ca4c313fe8a07942e"
16+
},
17+
"_source": "https://github.com/angular/bower-angular-aria.git",
18+
"_target": "~1.5.8",
19+
"_originalSource": "angular-aria"
20+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Angular
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# packaged angular-aria
2+
3+
This repo is for distribution on `npm` and `bower`. The source for this module is in the
4+
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAria).
5+
Please file issues and pull requests against that repo.
6+
7+
## Install
8+
9+
You can install this package either with `npm` or with `bower`.
10+
11+
### npm
12+
13+
```shell
14+
npm install angular-aria
15+
```
16+
Then add `ngAria` as a dependency for your app:
17+
18+
```javascript
19+
angular.module('myApp', [require('angular-aria')]);
20+
```
21+
22+
### bower
23+
24+
```shell
25+
bower install angular-aria
26+
```
27+
28+
Add a `<script>` to your `index.html`:
29+
30+
```html
31+
<script src="/bower_components/angular-aria/angular-aria.js"></script>
32+
```
33+
34+
Then add `ngAria` as a dependency for your app:
35+
36+
```javascript
37+
angular.module('myApp', ['ngAria']);
38+
```
39+
40+
## Documentation
41+
42+
Documentation is available on the
43+
[AngularJS docs site](http://docs.angularjs.org/api/ngAria).
44+
45+
## License
46+
47+
The MIT License
48+
49+
Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
50+
51+
Permission is hereby granted, free of charge, to any person obtaining a copy
52+
of this software and associated documentation files (the "Software"), to deal
53+
in the Software without restriction, including without limitation the rights
54+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
55+
copies of the Software, and to permit persons to whom the Software is
56+
furnished to do so, subject to the following conditions:
57+
58+
The above copyright notice and this permission notice shall be included in
59+
all copies or substantial portions of the Software.
60+
61+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
62+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
63+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
64+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
66+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
67+
THE SOFTWARE.

0 commit comments

Comments
 (0)