Skip to content

Commit d1206c1

Browse files
committed
updated readme
1 parent ee433b6 commit d1206c1

File tree

3 files changed

+97
-1
lines changed

3 files changed

+97
-1
lines changed

.firebaserc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"projects": {
3+
"ngrx-seed": "ng-ngrx-seed",
4+
"default": "ng-ngrx-seed"
5+
}
6+
}

README.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# Angular Seed
1+
<p align="center">
2+
<a href="https://ng-ngrx-seed.firebaseapp.com/" target='_blank'>
3+
<img alt="Angular Seed Logo" title="AngularSeed Logo" src="https://res.cloudinary.com/aviabird/image/upload/v1510377563/angular-seed/logo.png" width="200">
4+
</a>
5+
</p>
6+
7+
<p align="center">
8+
Angular Seed Plug and play Seed application built with ❤️ using Angular5, Redux/ngrx-store4, Observables & ImmutableJs.
9+
</p>
10+
11+
<p align="center">
12+
<a href="https://ng-ngrx-seed.firebaseapp.com/" target='_blank'>Check demo</a> | <a href="https://aviabird.github.io/angular-seed/" target="_blank">Docs </a>
13+
</p>
214

315
## [API Doc](https://documenter.getpostman.com/view/1691659/angular-seed/77mY1dq)
416

@@ -36,3 +48,23 @@ Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.
3648
## Running end-to-end tests
3749

3850
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
51+
52+
## Who are we?
53+
54+
We are [Aviabird Technologies](https://aviabird.com).
55+
56+
__We love to create awesome Web & Mobile products.__
57+
58+
__We are very proud of our work.__
59+
60+
We love technologies like Golang, Elixir, Scala, Ruby, Javascript, Typescript, Swift, Java.
61+
62+
We love some frameworks too:-
63+
* Ruby On Rails
64+
* Phoenix/Elixir framework.
65+
* Spring framework.
66+
* AngularJs (1.x+ & 2.x+)
67+
* ReactJs
68+
* BackboneJs
69+
70+
### We are avialible for hire

firebase.json

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"hosting": {
3+
"public": "dist",
4+
"rewrites": [
5+
{
6+
"source": "**",
7+
"destination": "/index.html"
8+
}
9+
],
10+
"headers": [
11+
{
12+
"source": "**/*",
13+
"headers": [
14+
{
15+
"key": "Content-Security-Policy",
16+
"value": "script-src 'self' 'nonce-2726c7f26c' www.googletagmanager.com cdnjs.cloudflare.com www.google-analytics.com"
17+
},
18+
{
19+
"key": "X-Frame-Options",
20+
"value": "SAMEORIGIN"
21+
},
22+
{
23+
"key": "X-XSS-Protection",
24+
"value": "1; mode=block"
25+
}
26+
]
27+
},
28+
{
29+
"source": "**/*.@(jpg|jpeg|gif|png|svg)",
30+
"headers": [
31+
{
32+
"key": "Cache-Control",
33+
"value": "max-age=2592000"
34+
}
35+
]
36+
},
37+
{
38+
"source": "**/*.@(js|css)",
39+
"headers": [
40+
{
41+
"key": "Cache-Control",
42+
"value": "max-age=691200"
43+
}
44+
]
45+
},
46+
{
47+
// Sets the cache header for 404 pages to cache for 5 minutes
48+
"source": "404.html",
49+
"headers": [
50+
{
51+
"key": "Cache-Control",
52+
"value": "max-age=300"
53+
}
54+
]
55+
}
56+
]
57+
}
58+
}

0 commit comments

Comments
 (0)