Skip to content

Commit 1e6af25

Browse files
authored
Merge pull request #33 from UW-Madison-DSI/feature
update readme file
2 parents d0c64a6 + dcccc28 commit 1e6af25

1 file changed

Lines changed: 57 additions & 27 deletions

File tree

README.md

Lines changed: 57 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,73 @@
11
# 2024 UW–Madison Open Source Program Office Survey
22

3-
In Spring 2024, the [Open Source Program Office at UW–Madison](https://ospo.wisc.edu/) conducted a survey to:
3+
[![Deploy to GitHub Pages](https://github.com/UW-Madison-DSI/open_source_survey_results_myst/actions/workflows/publish.yml/badge.svg)](https://github.com/UW-Madison-DSI/open_source_survey_results_myst/actions/workflows/publish.yml)
4+
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17379408.svg)](https://doi.org/10.5281/zenodo.17379408)
5+
6+
In Spring 2024, the [Open Source Program Office at UW–Madison](https://ospo.wisc.edu/) conducted a survey to:
47

58
- Assess the use of open source tools across the university community
69
- Identify open source projects currently under development
710
- Gather feedback on strengthening the open source ecosystem at UW–Madison
811

9-
This repository hosts a [MyST site](https://mystmd.org) that summarizes and presents results from the survey.
12+
This repository hosts a [MyST site](https://mystmd.org) that summarizes and presents results from the survey.
1013

11-
📍 **Live site:** [Survey Results on GitHub Pages](https://uw-madison-dsi.github.io/open_source_survey_results_myst/)
12-
📍 **Companion site (Quarto, for R users):** [Quarto site](https://uw-madison-dsi.github.io/open_source_survey_results/)
14+
📍 **Live MyST site:** [Survey Results (MyST)](https://uw-madison-dsi.github.io/open_source_survey_results_myst/)
15+
📍 **R-based Quarto site:** [Survey Results (Quarto)](https://uw-madison-dsi.github.io/open_source_survey_results/)
1316

1417
---
1518

16-
## Citation
17-
If you use this work, please cite us as
18-
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17379408.svg)](https://doi.org/10.5281/zenodo.17379408)
19+
## 📌 Table of Contents
20+
21+
- [Two Ways to Use This Repository](#-two-ways-to-use-this-repository)
22+
- [Repository Overview](#repository-overview)
23+
- [Technical Stack](#technical-stack)
24+
- [Build Locally](#build-locally)
25+
- [Project Structure](#-project-structure)
26+
- [Citation](#citation)
27+
- [Survey Resources](#-survey-resources)
28+
- [Contributing](#-contributing)
29+
- [Contact](#-contact)
30+
- [Acknowledgments](#-acknowledgments)
31+
- [License](#-license)
1932

2033
---
2134

35+
## 🎯 Two Ways to Use This Repository
36+
37+
### 1️⃣ View UW–Madison's Survey Results (Branch: `main`)
38+
39+
Explore our findings on open source usage, campus culture, and community needs at UW–Madison.
40+
41+
To build and preview the site on your machine:
42+
43+
```commandline
44+
# Navigate to docs folder
45+
cd survey_results_docs/docs
46+
47+
# Install dependencies
48+
pip install -U jupyter-book
49+
50+
# Build the site
51+
jupyter-book clean .
52+
jupyter-book build .
53+
54+
# Open in browser
55+
open _build/html/index.html
56+
# Or run a local server
57+
python -m http.server -d _build/html
58+
```
59+
60+
### 2️⃣ Create Your Own Survey Site (Branch: `cookiecutter-template`)
61+
62+
**Conducting a similar survey at your institution?** Use our Cookiecutter template to generate a fully customized version:
63+
64+
```bash
65+
pip install cookiecutter
66+
67+
cookiecutter gh:UW-Madison-DSI/open_source_survey_results_myst --checkout cookiecutter-template
68+
```
69+
70+
2271
## Repository Overview
2372

2473
- **`docs/`** – Source files for the MyST site
@@ -41,23 +90,4 @@ This project is built with:
4190

4291
---
4392

44-
## Build Locally
45-
46-
To build and preview the site on your machine:
47-
48-
```bash
49-
# Navigate to docs folder
50-
cd docs
51-
52-
# Install dependencies
53-
pip install -U jupyter-book
54-
55-
# Build the site
56-
jupyter-book clean .
57-
jupyter-book build .
58-
59-
# Open in browser
60-
open _build/html/index.html
61-
# Or run a local server
62-
python -m http.server -d _build/html
63-
```
93+
Maria Oros, Data Scientist

0 commit comments

Comments
 (0)