Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 868c978

Browse files
committedNov 26, 2020
First steps to improve README
1 parent 053ef7b commit 868c978

File tree

1 file changed

+47
-6
lines changed

1 file changed

+47
-6
lines changed
 

‎README.md

+47-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,59 @@
1-
NixOS.org
2-
=========
1+
# Source code for nixos.org
32

4-
This repository contains the sources of the `nixos.org` website. To
5-
build it:
3+
<p align="center">
4+
<!-- GitHub Workflow Status of master branch -->
5+
<a href="https://github.com/NixOS/nixos-homepage/actions?query=workflow%3A%22Build+%26+Deploy+to+Netlify%22" target="_blank">
6+
<img src="https://img.shields.io/github/workflow/status/nixos/nixos-homepage/Build%20&%20Deploy%20to%20Netlify?style=flat-square" alt="GitHub Workflow Status">
7+
</a>
8+
9+
<!-- Number of open GitHub issues -->
10+
<a href="https://github.com/nixos/nixos-homepage/issues" target="_blank">
11+
<img src="https://img.shields.io/github/issues/nixos/nixos-homepage?style=flat-square&color=red" alt="GitHub issues">
12+
</a>
13+
14+
<!-- Number of open GitHub pull requests -->
15+
<a href="https://github.com/nixos/nixos-homepage/pulls" target="_blank">
16+
<img src="https://img.shields.io/github/issues-pr/nixos/nixos-homepage?style=flat-square&color=blue" alt="GitHub pull requests">
17+
</a>
18+
19+
<br/>
20+
21+
<!-- Month of last commit -->
22+
<a href="https://github.com/NixOS/nixos-homepage/commits/master" target="_blank">
23+
<img src="https://img.shields.io/github/last-commit/NixOS/nixos-homepage?style=flat-square" alt="GitHub last commit">
24+
</a>
25+
26+
<!-- Number of all contributors -->
27+
<a href="https://github.com/nixos/nixos-homepage#contribute" target="_blank">
28+
<img alt="Contributors" src="https://img.shields.io/badge/all_contributors-10-orange.svg?style=flat-square">
29+
</a>
30+
31+
<!-- Licenses -->
32+
<a href="https://github.com/nixos/nixos/blob/master/LICENSES" target="_blank">
33+
<img alt="LICENSE" src="https://img.shields.io/github/license/nixos/nixos-homepage?style=flat-square&color=yellow">
34+
</a>
35+
36+
</p>
37+
38+
<hr/>
39+
40+
41+
Code and content for [nixos.org](https://nixos.org) website.
42+
43+
44+
## Contribute
45+
46+
To run local development instance follow this steps:
647

748
$ git clone git@github.com:NixOS/nixos-homepage.git
849
$ cd nixos-homepage
950
$ nix-shell
1051
[nix-shell]$ make
1152
[nix-shell]$ python -m http.server
1253

13-
then open http://127.0.0.1:8000/index.html
54+
Open your browser at: http://127.0.0.1:8000/index.html
1455

15-
To automatically rebuild on every change:
56+
To automatically rebuild on every change use:
1657

1758
[nix-shell]$ fd | entr make
1859

0 commit comments

Comments
 (0)
Please sign in to comment.