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: 14 days ago
JSON representation
A guide of how I've set up my home server.
- Host: GitHub
- URL: https://github.com/moonstar-x/server-setup
- Owner: moonstar-x
- License: mit
- Created: 2021-05-26T06:51:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-08-09T03:57:08.000Z (7 months ago)
- Last Synced: 2025-08-09T05:36:17.174Z (7 months ago)
- Language: HTML
- Homepage: https://moonstar-x.dev/server-setup/
- Size: 11.3 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).