Skip to content

Commit 43cf1ad

Browse files
committed
Add initial moatlab site files
0 parents  commit 43cf1ad

File tree

116 files changed

+6435
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+6435
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Deploy Hugo site to Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
defaults:
18+
run:
19+
shell: bash
20+
21+
jobs:
22+
build:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
with:
28+
submodules: recursive
29+
fetch-depth: 0
30+
31+
- name: Setup Pages
32+
id: pages
33+
uses: actions/configure-pages@v4
34+
35+
- name: Setup Hugo
36+
uses: peaceiris/actions-hugo@v2
37+
with:
38+
hugo-version: 'latest'
39+
extended: true
40+
41+
- name: Build with Hugo
42+
env:
43+
HUGO_ENVIRONMENT: production
44+
HUGO_ENV: production
45+
run: |
46+
hugo \
47+
--gc \
48+
--minify \
49+
--baseURL "${{ steps.pages.outputs.base_url }}/"
50+
51+
- name: Upload artifact
52+
uses: actions/upload-pages-artifact@v3
53+
with:
54+
path: ./public
55+
56+
deploy:
57+
environment:
58+
name: github-pages
59+
url: ${{ steps.deployment.outputs.page_url }}
60+
runs-on: ubuntu-latest
61+
needs: build
62+
steps:
63+
- name: Deploy to GitHub Pages
64+
id: deployment
65+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Hugo default output directory
2+
/public/
3+
4+
# Hugo generated files
5+
.hugo_build.lock
6+
7+
# Hugo cache
8+
.cache/
9+
10+
# Hugo resources
11+
resources/
12+
13+
# OS generated files
14+
.DS_Store
15+
.DS_Store?
16+
._*
17+
.Spotlight-V100
18+
.Trashes
19+
ehthumbs.db
20+
Thumbs.db
21+
22+
# Editor files
23+
.vscode/
24+
.idea/
25+
*.swp
26+
*.swo
27+
*~
28+
29+
# Logs
30+
*.log
31+
32+
# Temporary files
33+
*.tmp
34+
*.temp

README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# MoatLab Website
2+
3+
This is the official website for the MoatLab research group at Virginia Tech, focusing on computer systems research in Memory Systems, Operating Systems, System Architecture, and Storage Systems.
4+
5+
## About MoatLab
6+
7+
The **M**oat**Lab** research group pioneers cutting-edge research in **M**emory Systems, **O**perating Systems, System **A**rchitecture, and s**T**orage Systems. We design and build high-performance, efficient, and reliable computer systems that address real-world challenges in modern datacenters and cloud platforms.
8+
9+
## Website Features
10+
11+
- **Research Publications**: Latest papers and publications from the lab
12+
- **Team Members**: Faculty and graduate student profiles
13+
- **Open Source Projects**: Links to our GitHub repositories
14+
- **Teaching**: Course information and materials
15+
- **Sponsors**: Research funding and support
16+
17+
## Technology Stack
18+
19+
- **Hugo**: Static site generator
20+
- **GitHub Pages**: Hosting platform
21+
- **GitHub Actions**: Continuous deployment
22+
23+
## Local Development
24+
25+
To run the website locally:
26+
27+
1. Install Hugo (Extended version)
28+
2. Clone the repository
29+
3. Run `hugo server` in the project directory
30+
4. Visit `http://localhost:1313`
31+
32+
## Deployment
33+
34+
The website is automatically deployed to GitHub Pages when changes are pushed to the main branch. The site is available at [https://moatlab.github.io](https://moatlab.github.io).
35+
36+
## Repository Structure
37+
38+
- `content/`: Website content (markdown files)
39+
- `layouts/`: Hugo templates
40+
- `assets/`: CSS, JavaScript, and other assets
41+
- `config/`: Hugo configuration
42+
- `static/`: Static files (images, etc.)
43+
44+
## Contact
45+
46+
For questions about the website or research group, please contact [[email protected]](mailto:[email protected]).

0 commit comments

Comments
 (0)