https://github.com/lintje/lintje.dev
The website for Lintje, the opinionated Git linter.
https://github.com/lintje/lintje.dev
command-line git linter rust utilities website
Last synced: 2 months ago
JSON representation
The website for Lintje, the opinionated Git linter.
- Host: GitHub
- URL: https://github.com/lintje/lintje.dev
- Owner: lintje
- Created: 2021-08-11T21:00:25.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-03-02T11:01:25.000Z (4 months ago)
- Last Synced: 2026-03-02T14:52:15.049Z (4 months ago)
- Topics: command-line, git, linter, rust, utilities, website
- Language: SCSS
- Homepage: https://lintje.dev
- Size: 453 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lintje.dev
Website for [Lintje](https://lintje.dev).
This website is made using Bridgetown. Consult the [Bridgetown
documentation](https://www.bridgetownrb.com/docs/) for more information.
## Table of Contents
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Development](#development)
- [Commands](#commands)
- [Contributing](#contributing)
## Prerequisites
- [GCC](https://gcc.gnu.org/install/)
- [Make](https://www.gnu.org/software/make/)
- [Ruby](https://www.ruby-lang.org/en/downloads/)
- `>= 2.7`
- [Node](https://nodejs.org)
- `>= 12`
- [Yarn](https://yarnpkg.com)
## Installation
```sh
bundle install
yarn install
```
## Development
Start the site in development mode, run `bin/bridgetown start` and navigate to
[localhost:4000](https://localhost:4000/).
### Deployment
Configure this command in the build step of the website hosting.
```sh
BRIDGETOWN_ENV=production bin/bridgetown deploy
```
Load the site up within a Ruby console (IRB).
```
bin/bridgetown console
```
## Contributing
Want to make an improvement, follow these steps:
1. Fork this repository.
2. Clone the fork using `git clone` to your local development machine.
3. Create your feature branch (`git checkout -b my-new-feature`)
4. Commit your changes (`git commit -am 'Add some feature'`)
5. Push to the branch (`git push origin my-new-feature`)
6. Create a new Pull Request.