Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fortran-lang/fortran-lang.org
(deprecated) Fortran website
https://github.com/fortran-lang/fortran-lang.org
Last synced: about 24 hours ago
JSON representation
(deprecated) Fortran website
- Host: GitHub
- URL: https://github.com/fortran-lang/fortran-lang.org
- Owner: fortran-lang
- License: mit
- Created: 2020-04-09T20:54:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-22T17:14:33.000Z (over 1 year ago)
- Last Synced: 2024-05-01T20:59:32.545Z (6 months ago)
- Language: HTML
- Homepage: https://fortran-lang.github.io/fortran-lang.org
- Size: 25.9 MB
- Stars: 130
- Watchers: 14
- Forks: 68
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# fortran-lang.org website
**This repository is deprecated, the new webpage can be found [here](https://github.com/fortran-lang/webpage).**
This repository contains the source for the fortran-lang.io website.
It's derived from https://github.com/neovim/neovim.github.io.## Contributing
* [CONTRIBUTING](./CONTRIBUTING.md): getting started and general guidance on contributing to
* [MINIBOOKS](./MINIBOOKS.md): how to write and structure a mini-book tutorial for the [Learn](https://fortran-lang.org/learn) section
* [PACKAGES](./PACKAGES.md): adding an entry to the [Package index](https://fortran-lang.org/packages)
## Setup
This assumes that you already have a recent Ruby with RubyGems.
For example on Ubuntu 18.04, do:
```
sudo apt install ruby-dev
```### Installing Ruby gems
Install Bundler, either systemwide:
```
sudo gem install bundler
```or for the current user:
```
gem install --user-install bundler
export PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"
```In the latter case, you might want to add the `PATH` update to `.bashrc` or your shell's equivalent.
To install the dependencies of this project, use Bundler:
```
bundle config set path '.bundle'
bundle install
```### Serving locally
Execute the following command:
```
bundle exec jekyll serve --watch
```Open `http://localhost:4000` to view the website.