Welcome to the official documentation repository for the REPACSS High-Performance Computing (HPC) Cluster at Texas Tech University.
This guide provides comprehensive, organized, and beginner-friendly documentation for users of the REPACSS system — including students, researchers, and faculty across various departments.
This repository powers a structured, searchable documentation site built with MkDocs and the Material for MkDocs theme. The site is organized into major sections:
- ✅ Getting Started
- 🔐 Connecting to REPACSS
- 🧮 Running Jobs with Slurm
- 💾 Software Management (Spack, Conda, Containers, Trending Applications)
- 🚀 Performance Optimization
- 🛠 Troubleshooting & Reference
- 🧠 Understanding the REPACSS System
Explore the full documentation by visiting the deployed site (coming soon).
Configuration is controlled in mkdocs.yml
.
You can preview the site locally using MkDocs:
- Python 3.8+ installed on your system
git clone https://github.com/nsfcac/repacss-user-guide.git
cd repacss-user-guide
python -m venv .venv
source .venv/bin/activate # On Windows, use `.venv\Scripts\activate`
pip install -r requirements.txt
mkdocs serve
Visit http://localhost:8000
to view it.
This site can be deployed using GitHub Pages or any static site host.
To build static files:
mkdocs build
To deploy using gh-pages
:
mkdocs gh-deploy
We welcome contributions! If you’d like to:
- Fix a typo
- Add a new section
- Improve examples or formatting
Feel free to open a pull request or file an issue.
This project is licensed under the MIT License. See the LICENSE file for details.