Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devbruce/devbruce.github.io
devbruce's Tech Blog
https://github.com/devbruce/devbruce.github.io
blog data-science deep-learning development machine-learning
Last synced: 20 days ago
JSON representation
devbruce's Tech Blog
- Host: GitHub
- URL: https://github.com/devbruce/devbruce.github.io
- Owner: devbruce
- License: mit
- Created: 2018-08-15T17:49:40.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-01-11T03:42:21.000Z (29 days ago)
- Last Synced: 2025-01-11T04:35:08.329Z (29 days ago)
- Topics: blog, data-science, deep-learning, development, machine-learning
- Language: HTML
- Homepage: https://devbruce.github.io/
- Size: 8.16 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
devbruce's Tech Blog> [!NOTE]
> Theme: [jekyll-theme-chirpy](https://github.com/cotes2020/jekyll-theme-chirpy)## 📖 How to Set Local Environment
### 🛠️ Prerequisites
- [rbenv](https://github.com/rbenv/rbenv)
- [nvm](https://github.com/nvm-sh/nvm)### ✔️ Step 0. Git Clone with Submodules
> [!IMPORTANT]
> Add `--recurse-submodules` option to git clone command```bash
git clone --recurse-submodules https://github.com/devbruce/devbruce.github.io.git
```### ✔️ Step 1. Install Node with [nvm](https://github.com/nvm-sh/nvm)
```bash
nvm install ${NodeVersion}
```### ✔️ Step 2. Build with npm
Bundles code with Rollup in production mode using a [CommonJS config](./rollup.config.js)
```bash
npm install
``````bash
npm run build
```### ✔️ Step 3. Install Ruby with [rbenv](https://github.com/rbenv/rbenv)
```bash
rbenv install ${RubyVersion}
```### ✔️ Step 4. Install Dependencies
```bash
bundle install
```
## 🚀 Run Server on Local
```bash
bundle exec jekyll s
```