Skip to content

Commit

Permalink
Squashed 'docs/redis-doc/' content from commit 99a0aa52
Browse files Browse the repository at this point in the history
git-subtree-dir: docs/redis-doc
git-subtree-split: 99a0aa5242ce7fb1f4b2293a3ef8b142e46f8dcb
  • Loading branch information
mmkal committed Oct 12, 2020
0 parents commit 0c6c01a
Show file tree
Hide file tree
Showing 349 changed files with 40,109 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gems
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
batch -v 1.0.4
redcarpet -v 3.3.2
nokogiri -v 1.6.7.1
16 changes: 16 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Deploy website
on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- shell: bash
env:
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
run: |
curl -G https://redis.io/deploy --data-urlencode token=$DEPLOY_TOKEN
20 changes: 20 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check pull request
on:
pull_request:
branches:
- master

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- uses: actions/[email protected]
- name: Install dependencies
run: gem install $(sed -e 's/ -v /:/' .gems)
- name: Sanity parse test
run: make -s
- name: Spelling check
run: make spell
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
tmp
22 changes: 22 additions & 0 deletions COPYRIGHT
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
This documentation is Copyright (C) 2009-2014 Salvatore Sanfilippo and
is released under the following license:

Creative Commons Attribution-ShareAlike 4.0 International

You can find the full text of the license in the Creative Commons web site
at the following URL:

http://creativecommons.org/licenses/by-sa/4.0/

The following is a human-readable summary of (and not a substitute for)
the license:

You are free to:

* Share — copy and redistribute the material in any medium or format
* Adapt — remix, transform, and build upon the material

for any purpose, even commercially.

The licensor cannot revoke these freedoms as long as you follow the license
terms.
Loading

0 comments on commit 0c6c01a

Please sign in to comment.