Skip to content

Commit dfefec4

Browse files
committed
first commit
0 parents  commit dfefec4

File tree

267 files changed

+202448
-0
lines changed

Some content is hidden

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

267 files changed

+202448
-0
lines changed

CHANGELOG.md

Whitespace-only changes.

Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM nginx:1.16.1
2+
3+
EXPOSE 80
4+
5+
RUN echo "deb http://security.debian.org/debian-security stretch/updates main" > /etc/apt/sources.security.only.list
6+
RUN apt-get -y update -o Dir::Etc::SourceList=/etc/apt/sources.security.only.list -o Dir::Etc::Parts=/dev/null
7+
RUN apt-get -y upgrade -o Dir::Etc::SourceList=/etc/apt/sources.security.only.list -o Dir::Etc::Parts=/dev/nulld
8+
9+
RUN rm /etc/nginx/conf.d/default.conf
10+
11+
COPY nginx.conf /etc/nginx/nginx.conf
12+
COPY scripts/docker/start-nginx.sh /usr/share/nginx/start-nginx.sh
13+
14+
COPY dist/mulder /usr/share/nginx/html
15+
COPY version /usr/share/nginx/html/assets/version
16+
17+
ENTRYPOINT ["/usr/share/nginx/start-nginx.sh"]

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013-2020 Start Bootstrap LLC
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
13+
all 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
21+
THE SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Demo main site

TODO.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
[ ] Finish documentation
3+
[ ] Finish agendadsl
4+
[ ] Update dockerfile with bunkerized nginx

angular.json

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"mulder": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "scss"
11+
}
12+
},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "mulder",
16+
"architect": {
17+
"build": {
18+
"builder": "@angular-devkit/build-angular:browser",
19+
"options": {
20+
"allowedCommonJsDependencies": [
21+
"lodash",
22+
"d3-cloud",
23+
"surveyjs-widgets",
24+
"survey-pdf",
25+
"raf",
26+
"@babel/runtime-corejs3"
27+
28+
],
29+
"outputPath": "dist/mulder",
30+
"index": "src/index.html",
31+
"main": "src/main.ts",
32+
"polyfills": "src/polyfills.ts",
33+
"tsConfig": "tsconfig.app.json",
34+
"aot": false,
35+
"assets": [
36+
"src/assets/img/favicon.ico",
37+
"src/assets"
38+
],
39+
"styles": [
40+
"src/styles/styles.scss"
41+
],
42+
"stylePreprocessorOptions": {
43+
"includePaths": [
44+
"src",
45+
"./node_modules"
46+
]
47+
},
48+
"scripts": [
49+
]
50+
},
51+
"configurations": {
52+
"production": {
53+
"fileReplacements": [
54+
{
55+
"replace": "src/environments/environment.ts",
56+
"with": "src/environments/environment.prod.ts"
57+
}
58+
],
59+
"optimization": true,
60+
"outputHashing": "all",
61+
"sourceMap": false,
62+
"namedChunks": false,
63+
"aot": true,
64+
"extractLicenses": true,
65+
"vendorChunk": false,
66+
"buildOptimizer": true,
67+
"budgets": [
68+
{
69+
"type": "initial",
70+
"maximumWarning": "2mb",
71+
"maximumError": "5mb"
72+
},
73+
{
74+
"type": "anyComponentStyle",
75+
"maximumWarning": "6kb",
76+
"maximumError": "10kb"
77+
}
78+
]
79+
}
80+
}
81+
},
82+
"serve": {
83+
"builder": "@angular-devkit/build-angular:dev-server",
84+
"options": {
85+
"browserTarget": "mulder:build"
86+
},
87+
"configurations": {
88+
"production": {
89+
"browserTarget": "mulder:build:production"
90+
}
91+
}
92+
},
93+
"extract-i18n": {
94+
"builder": "@angular-devkit/build-angular:extract-i18n",
95+
"options": {
96+
"browserTarget": "mulder:build"
97+
}
98+
},
99+
"test": {
100+
"builder": "@angular-devkit/build-angular:karma",
101+
"options": {
102+
"main": "src/test.ts",
103+
"polyfills": "src/polyfills.ts",
104+
"tsConfig": "tsconfig.spec.json",
105+
"karmaConfig": "karma.conf.js",
106+
"assets": [
107+
"src/assets/img/favicon.ico",
108+
"src/assets"
109+
],
110+
"styles": [
111+
"src/styles/styles.scss"
112+
],
113+
"stylePreprocessorOptions": {
114+
"includePaths": [
115+
"src",
116+
"./node_modules"
117+
]
118+
},
119+
"scripts": [],
120+
"codeCoverageExclude": [
121+
"src/testing/**/*"
122+
]
123+
}
124+
},
125+
"lint": {
126+
"builder": "@angular-devkit/build-angular:tslint",
127+
"options": {
128+
"tsConfig": [
129+
"tsconfig.app.json",
130+
"tsconfig.spec.json",
131+
"e2e/tsconfig.json"
132+
],
133+
"exclude": [
134+
"**/node_modules/**"
135+
]
136+
}
137+
},
138+
"e2e": {
139+
"builder": "@angular-devkit/build-angular:protractor",
140+
"options": {
141+
"protractorConfig": "e2e/protractor.conf.js",
142+
"devServerTarget": "mulder:serve"
143+
},
144+
"configurations": {
145+
"production": {
146+
"devServerTarget": "mulder:serve:production"
147+
}
148+
}
149+
}
150+
}
151+
}
152+
},
153+
"defaultProject": "mulder",
154+
"cli": {
155+
"analytics": "1b38752a-78cd-445f-b84a-c73a1648eb69"
156+
}
157+
}

browserslist

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
> 0.5%
2+
last 2 versions
3+
Firefox ESR
4+
not dead
5+
not IE 9-11 # For IE 9-11 support, remove 'not'.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: blog-post
3+
title: First post using jekyll
4+
description: This is the my first post after configuring my site to use github pages, and more specifically, after I started using Scully.
5+
categories: [first-post, jekyll, github-pages]
6+
published: true
7+
---
8+
9+
This is the my first post after configuring my site to use github pages, and more specifically, after I started using Scully.
10+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
---
2+
layout: blog-post
3+
title: Testing different markup options
4+
description: Sample of blog post with scully
5+
place: Rennes, France
6+
categories: [markdown, untidy]
7+
published: true
8+
---
9+
10+
This post is a test for markdown and Scully. I basically have all kinds of examples of how to do stuff in markdown, but it's not tidy at all.
11+
12+
<!--more-->
13+
14+
Markup syntax can be found here\:
15+
[http://daringfireball.net/projects/markdown/syntax](http://daringfireball.net/projects/markdown/syntax)
16+
[https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
17+
18+
This is [an example](http://example.com/ "Title") inline link.
19+
[This link](http://example.net/) has no title attribute.
20+
21+
<p> Regular text goes here. Just messing around with this darn thingity and it seems to be doing ok</p>
22+
23+
24+
<!-- <img src="/img/dolphins.jpg" class="img-responsive"> -->
25+
<!-- <hr> -->
26+
27+
28+
<p class="lead"> Second part, this is the lead part of the text, most likely the excerpt.</p>
29+
30+
<p><strong>Placeholder text by:</strong>
31+
</p>
32+
<ul>
33+
<li><a href="http://spaceipsum.com/">Space Ipsum</a>
34+
</li>
35+
<li><a href="http://cupcakeipsum.com/">Cupcake Ipsum</a>
36+
</li>
37+
</ul>
38+
39+
<hr>
40+
41+
42+
```java
43+
public static void main(String[] args)
44+
{
45+
int[] list ={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
46+
int sum = sumListEnhanced(list);
47+
System.out.println("Sum of elements in list: " + sum);
48+
49+
System.out.println("Original List");
50+
printList(list);
51+
System.out.println("Calling addOne");
52+
addOne(list);
53+
System.out.println("List after call to addOne");
54+
printList(list);
55+
System.out.println("Calling addOneError");
56+
addOneError(list);
57+
System.out.println("List after call to addOneError. Note elements of list did not change.");
58+
printList(list);
59+
}
60+
```
61+
62+
63+
1. First ordered list item
64+
2. Another item
65+
* Unordered sub-list.
66+
1. Actual numbers don't matter, just that it's a number
67+
1. Ordered sub-list
68+
4. And another item.
69+
70+
You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
71+
72+
To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
73+
Note that this line is separate, but within the same paragraph.⋅⋅
74+
(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
75+
76+
* Unordered list can use asterisks
77+
- Or minuses
78+
+ Or pluses
79+
80+
81+
# Hello World
82+
83+
Proin eleifend libero accumsan felis luctus nec consectetur purus commodo. \
84+
Phasellus sodales est nec massa imperdiet commodo. Maecenas risus nulla, pl\
85+
acerat vel vestibulum vel, dapibus quis libero.
86+
87+
Donec libero libero, bibendum non condimentum ac, ullamcorper at sapien. Du\
88+
is feugiat urna vel justo cursus facilisis. Vivamus ligula dui, convallis a\
89+
varius vitae, facilisis eget magna.
90+
91+
92+
This should not be quoted.
93+
94+
> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
95+
> consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
96+
> Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
97+
>
98+
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
99+
> id sem consectetuer libero luctus adipiscing.
100+
101+
#### This should not be quoted.
102+
103+
104+
> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
105+
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
106+
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
107+
108+
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
109+
id sem consectetuer libero luctus adipiscing.
110+
111+
#### This should not be quoted.
112+
113+
> This is the first level of quoting.
114+
>
115+
> > This is nested blockquote.
116+
>
117+
> Back to the first level.
118+
119+
#### This should not be quoted.
120+
121+
122+
> ## This is a header.
123+
>
124+
> 1. This is the first list item.
125+
> 2. This is the second list item.
126+
>
127+
> Here's some example code:
128+
>
129+
> return shell_exec("echo $input | $markdown_script");
130+
131+
132+
Unordered lists use asterisks, pluses, and hyphens — interchangably — as list markers:
133+
134+
* Red
135+
* Green
136+
* Blue
137+
is equivalent to:
138+
139+
+ Red
140+
+ Green
141+
+ Blue
142+
and:
143+
144+
- Red
145+
- Green
146+
- Blue
147+
148+
149+
Ordered lists use numbers followed by periods:
150+
151+
1. Bird
152+
2. McHale
153+
3. Parish
154+
155+
If you instead wrote the list in Markdown like this:
156+
157+
1. Bird
158+
1. McHale
159+
1. Parish
160+
161+
162+
To make lists look nice, you can wrap items with hanging indents:
163+
164+
* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
165+
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
166+
viverra nec, fringilla in, laoreet vitae, risus.
167+
* Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
168+
Suspendisse id sem consectetuer libero luctus adipiscing.
169+
170+
171+
```bash
172+
cd ~
173+
```

0 commit comments

Comments
 (0)