Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harshcasper/quansight-labs-presentation
Internship talk at @Quansight-Labs on re-engineering continuous integration pipelines for @SciPy
https://github.com/harshcasper/quansight-labs-presentation
Last synced: 3 days ago
JSON representation
Internship talk at @Quansight-Labs on re-engineering continuous integration pipelines for @SciPy
- Host: GitHub
- URL: https://github.com/harshcasper/quansight-labs-presentation
- Owner: HarshCasper
- License: mit
- Created: 2021-09-28T10:14:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-30T11:35:11.000Z (over 3 years ago)
- Last Synced: 2024-11-08T05:41:40.552Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://quansight.harshcasper.com/
- Size: 6.81 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quansight-Labs-Presentation
The slides and content for the internship talk at [Quansight Labs](https://labs.quansight.org) on re-engineering CI/CD pipelines for [Scipy](https://github.com/scipy/scipy).
## Setup
To setup the slides on your local machine, follow these steps:
1. Install [hugo](https://gohugo.io/getting-started/installing/)
2. For development:```sh
hugo server -D
```3. In `config.toml` set `baseURL` to be the baseURL of your hosted website.
4. To build and serve it using Docker, push the following command:```sh
docker run --rm -it \
-v $(pwd):/src \
-p 1313:1313 \
klakegg/hugo:0.83.1 \
server
```## Acknowledgements
The slide format is inspired from [Anirudh Dagar's Quansight Labs Internship talk](https://github.com/AnirudhDagar/qs-intern-talk) and [Thomas J. Fan's Hugo+Reveal Slide template](https://github.com/thomasjpfan/slides-template-hugo).