https://github.com/codereport/adsp2
https://github.com/codereport/adsp2
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codereport/adsp2
- Owner: codereport
- License: mit
- Created: 2020-11-17T02:27:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2026-01-30T15:58:15.000Z (5 months ago)
- Last Synced: 2026-01-31T06:00:47.298Z (5 months ago)
- Language: HTML
- Homepage: https://www.adspthepodcast.com
- Size: 13.8 MB
- Stars: 23
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The ADSP Podcast Website Source
The ADSP website is automatically updated when this repo changes.
## Local Development
To host the site locally for development and testing:
### Prerequisites
1. **Install Ruby** (version 3.0 or higher):
```bash
sudo apt-get update
sudo apt-get install -y ruby-full
```
2. **Install Bundler**:
```bash
sudo gem install bundler
```
### Setup and Run
1. **Install dependencies**:
```bash
sudo bundle install
```
2. **Serve the site locally**:
```bash
bundle exec jekyll serve --host 0.0.0.0 --port 4000
```
3. **Access the site**:
Open your browser and navigate to `http://localhost:4000`
The site will automatically rebuild when you make changes to the source files. Press `Ctrl+C` to stop the server.