Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/moonstar-x/server-setup
- Owner: moonstar-x
- License: mit
- Created: 2021-05-26T06:51:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-10T16:41:48.000Z (7 months ago)
- Last Synced: 2024-04-10T20:15:08.386Z (7 months ago)
- Language: HTML
- Homepage: https://moonstar-x.dev/server-setup/
- Size: 6.38 MB
- Stars: 3
- Watchers: 2
- 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).