Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/moonstar-x/server-setup

A guide of how I've set up my home server.
https://github.com/moonstar-x/server-setup

Last synced: 4 days ago
JSON representation

A guide of how I've set up my home server.

Awesome Lists containing this project

README

        

# Server Setup Guide

This is a small guide on setting up my personal home server. The site was built using [mkdocs](https://www.mkdocs.org/) and [squidfunk's mkdocs-material theme](https://github.com/squidfunk/mkdocs-material).

## Development

To develop for this repo you must first create a Python virtual environment:

```text
python3 -m venv ./venv
```

Then activate it, on `unix`:

```text
source ./venv/bin/activate
```

And finally install the dependencies:

```text
pip install -r requirements.txt
```

You can then start a development server with:

```text
mkdocs serve -a 0.0.0.0:8000
```

## Author

This guide repo has been made by [moonstar-x](https://github.com/moonstar-x).