https://github.com/bamescience/bamescience.github.io
https://github.com/bamescience/bamescience.github.io
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bamescience/bamescience.github.io
- Owner: BAMeScience
- License: mit
- Created: 2022-03-15T08:51:31.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-10T06:16:20.000Z (4 months ago)
- Last Synced: 2025-09-10T09:49:32.645Z (4 months ago)
- Language: HTML
- Homepage: https://bamescience.github.io/
- Size: 72.2 MB
- Stars: 0
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Website based on Hydra Jekyll theme `https://jekyllthemes.io/theme/hydra-jekyll-theme`
To run locally, follow the [Instructions](https://jekyllrb.com/docs/) specified in the Jekyll documentation. When you have installed all prerequisites, run:
```sh
gem install jekyll bundler
```
Enter the folder:
```sh
cd BAMeScience.github.io/
```
and install the dependencies:
```sh
bundle install
```
Then, execute:
```sh
bundle exect jekyll serve
```
to run the local server. The terminal will show the localhost where the web is deployed:
```sh
Configuration file: /home//BAMeScience.github.io/_config.yml
Source: /home//BAMeScience.github.io
Destination: /home//BAMeScience.github.io/_site
Incremental build: disabled. Enable with --incremental
Generating...
Jekyll Feed: Generating feed for posts
done in 0.203 seconds.
Auto-regeneration: enabled for '/home//BAMeScience.github.io'
Server address: http://127.0.0.1:4000
Server running... press ctrl-c to stop
```
Click on the server address to visualize the website. You can add the option `--livereload` to serve to automatically refresh the page with each change you make to the source files:
```sh
bundle exect jekyll serve --livereload
```