Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Reorganize guide structure #22

Merged
merged 15 commits into from
Apr 1, 2019
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .bookignore

This file was deleted.

4 changes: 4 additions & 0 deletions .formatter.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Used by "mix format"
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
133 changes: 117 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,117 @@
# Node rules:
## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

## Dependency directory
## Commenting this out is preferred by some people, see
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
node_modules

# Book build output
_book

# eBook build output
*.epub
*.mobi
*.pdf
secrets.sh

# Created by https://www.gitignore.io/api/vim,macos,linux,elixir,windows,visualstudiocode
# Edit at https://www.gitignore.io/?templates=vim,macos,linux,elixir,windows,visualstudiocode

### Elixir ###
/_build
/cover
/deps
/doc
/.fetch
erl_crash.dump
*.ez
*.beam
/config/*.secret.exs
.elixir_ls/

### Elixir Patch ###

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Vim ###
# Swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]

# Session
Session.vim

# Temporary
.netrwhist
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

### VisualStudioCode Patch ###
# Ignore all local history of files
.history

### Windows ###
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# End of https://www.gitignore.io/api/vim,macos,linux,elixir,windows,visualstudiocode
14 changes: 6 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
language: node_js
node_js: node
language: elixir
elixir:
- 1.8
otp_release:
- 21.3
sudo: false

install:
- npm i gitbook-cli
- npm i gitbook-plugin-insert-logo
- npm i gitbook-plugin-analytics

script:
- ./node_modules/gitbook-cli/bin/gitbook.js build
- mix docs

deploy:
- provider: script
Expand Down
13 changes: 0 additions & 13 deletions SUMMARY.md

This file was deleted.

Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 0 additions & 15 deletions book.json

This file was deleted.

5 changes: 0 additions & 5 deletions chapter1.md

This file was deleted.

33 changes: 0 additions & 33 deletions chapter1/concepts.md

This file was deleted.

8 changes: 0 additions & 8 deletions chapter2.md

This file was deleted.

43 changes: 0 additions & 43 deletions chapter2/lifecycle.md

This file was deleted.

2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

cd ${TRAVIS_BUILD_DIR}/_book
cd ${TRAVIS_BUILD_DIR}/docs

for file in $(find -type f); do
curl --ftp-create-dirs -s -S \
Expand Down
Loading