Skip to content

Commit 315cb42

Browse files
committed
Initial content.
1 parent 4946217 commit 315cb42

File tree

8 files changed

+164
-0
lines changed

8 files changed

+164
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
tags: '*'
8+
pull_request:
9+
10+
jobs:
11+
build:
12+
name: Page build
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: julia-actions/setup-julia@v1
17+
with:
18+
version: '1'
19+
- name: Install dependencies
20+
run: julia --project -e 'using Pkg; Pkg.instantiate()'
21+
- name: Build and deploy
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
25+
run: julia --project --color=yes make.jl

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 JuliaLogging contributors
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.

Manifest.toml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[Base64]]
4+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
5+
6+
[[Dates]]
7+
deps = ["Printf"]
8+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
9+
10+
[[DocStringExtensions]]
11+
deps = ["LibGit2"]
12+
git-tree-sha1 = "a32185f5428d3986f47c2ab78b1f216d5e6cc96f"
13+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
14+
version = "0.8.5"
15+
16+
[[Documenter]]
17+
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
18+
git-tree-sha1 = "621850838b3e74dd6dd047b5432d2e976877104e"
19+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
20+
version = "0.27.2"
21+
22+
[[IOCapture]]
23+
deps = ["Logging", "Random"]
24+
git-tree-sha1 = "f7be53659ab06ddc986428d3a9dcc95f6fa6705a"
25+
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
26+
version = "0.2.2"
27+
28+
[[InteractiveUtils]]
29+
deps = ["Markdown"]
30+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
31+
32+
[[JSON]]
33+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
34+
git-tree-sha1 = "81690084b6198a2e1da36fcfda16eeca9f9f24e4"
35+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
36+
version = "0.21.1"
37+
38+
[[LibGit2]]
39+
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
40+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
41+
42+
[[Logging]]
43+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
44+
45+
[[Markdown]]
46+
deps = ["Base64"]
47+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
48+
49+
[[Mmap]]
50+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
51+
52+
[[NetworkOptions]]
53+
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
54+
55+
[[Parsers]]
56+
deps = ["Dates"]
57+
git-tree-sha1 = "c8abc88faa3f7a3950832ac5d6e690881590d6dc"
58+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
59+
version = "1.1.0"
60+
61+
[[Printf]]
62+
deps = ["Unicode"]
63+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
64+
65+
[[REPL]]
66+
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
67+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
68+
69+
[[Random]]
70+
deps = ["Serialization"]
71+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
72+
73+
[[SHA]]
74+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
75+
76+
[[Serialization]]
77+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
78+
79+
[[Sockets]]
80+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
81+
82+
[[Test]]
83+
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
84+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
85+
86+
[[Unicode]]
87+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# julialogging.github.io
2+
3+
JuliaLogging organization home page

make.jl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using Documenter
2+
3+
# Build the docs
4+
makedocs(
5+
sitename = "JuliaLogging",
6+
pages = [
7+
"Home" => "index.md",
8+
],
9+
format = Documenter.HTML(
10+
),
11+
)
12+
13+
deploydocs(
14+
repo = "github.com/JuliaLogging/julialogging.github.io.git",
15+
)

src/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# JuliaLogging
2+
3+
This is the landing page of the [JuliaLogging GitHub organization](https://github.com/JuliaLogging/).
4+
JuliaLogging is an umbrella organization for logging-related packages and repositories
5+
of [Julia programming language](https://julialang.org/) ecosystem.
6+
7+
JuliaLogging is the home for the following packages and repositories:
8+
9+
* [LoggingExtras](https://github.com/JuliaLogging/LoggingExtras.jl) -- extensions to the Logging stdlib
10+
* [LokiLogger](https://github.com/JuliaLogging/LokiLogger.jl) -- log message sink for [Grafana Loki](https://grafana.com/oss/loki/)

0 commit comments

Comments
 (0)