|
1 |
| -NixOS.org |
2 |
| -========= |
| 1 | +# Source code for nixos.org |
3 | 2 |
|
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: |
6 | 47 |
|
7 | 48 | $ git clone git@github.com:NixOS/nixos-homepage.git
|
8 | 49 | $ cd nixos-homepage
|
9 | 50 | $ nix-shell
|
10 | 51 | [nix-shell]$ make
|
11 | 52 | [nix-shell]$ python -m http.server
|
12 | 53 |
|
13 |
| -then open http://127.0.0.1:8000/index.html |
| 54 | +Open your browser at: http://127.0.0.1:8000/index.html |
14 | 55 |
|
15 |
| -To automatically rebuild on every change: |
| 56 | +To automatically rebuild on every change use: |
16 | 57 |
|
17 | 58 | [nix-shell]$ fd | entr make
|
18 | 59 |
|
|
0 commit comments