Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliendargelos/lilu-prototype
La lecture à deux (prototype)
https://github.com/juliendargelos/lilu-prototype
Last synced: 4 days ago
JSON representation
La lecture à deux (prototype)
- Host: GitHub
- URL: https://github.com/juliendargelos/lilu-prototype
- Owner: juliendargelos
- Created: 2018-01-11T12:17:32.000Z (about 7 years ago)
- Default Branch: source
- Last Pushed: 2018-03-23T13:42:17.000Z (almost 7 years ago)
- Last Synced: 2024-11-11T05:38:54.268Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 267 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lilu
*La lecture à deux* (prototype)
## Install
### 1. [Homebrew](https://brew.sh/index_fr.html)
#### Check if [Homebrew](https://brew.sh/index_fr.html) is installed:
```bash
brew
```The output should start with something like:
```bash
Example usage:
brew search [TEXT|/REGEX/]
...
```#### If not, install [Homebrew](https://brew.sh/index_fr.html):
*It could take a while...*
```bash
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```### 2. [rbenv](https://github.com/rbenv/rbenv)
#### Check if [rbenv](https://github.com/rbenv/rbenv) is installed:
```bash
rbenv
```The output should start with something like:
```bash
rbenv 1.0.0
Usage: rbenv []
...
```#### If not, install [rbenv](https://github.com/rbenv/rbenv):
*It could take a while...*
```bash
brew install rbenv
```Then type the following command and follow the instructions:
```bash
rbenv init
```### 3. [Ruby](http://ruby-doc.org)
#### Check if you have the proper [Ruby](http://ruby-doc.org) version installed:
```bash
rbenv versions
```A list of ruby version will be printed, check if it contains `2.4.2`.
#### If not, install the proper [Ruby](http://ruby-doc.org) version:
*It could take a while...*
```bash
rbenv install 2.4.2
```### 4. Clone the [repository](https://www.github.com/juliendargelos/lilu)
```bash
git clone [email protected]:juliendargelos/lilu.git
```Then go into the project directory, probably:
```
cd lilu
```### 5. [Bundler](http://bundler.io)
#### Check if [Bundler](http://bundler.io) is installed:
```bash
bundle -v
```The output should look like:
```bash
Bundler version 1.16.0.pre.3
```#### If not, install [Bundler](http://bundler.io):
*It could take a while...*
```bash
gem install bundler
```### 6. Install the project
*It could take a while...*
```
bundle
```## Usage
### Serve:
```bash
middleman
```### Build:
```
middleman build
```### Deploy:
```
middleman deploy
```*Will be accessible from [juliendargelos.github.io/lilu](http://juliendargelos.github.io/lilu/)*