├── CNAME ├── docs ├── env.md ├── kick-ascii │ ├── img │ │ └── lbry.png │ ├── cast │ │ ├── dev-env-install.png │ │ ├── dev-env-install.png.kra │ │ └── dev-env-install.cast │ ├── index.html │ └── kick-ascii.js ├── index.md └── install.md ├── images ├── .DS_Store ├── movie.png ├── movies.png ├── scene1.png ├── scene2.png ├── scenes.png ├── stash.jpg ├── studio.png ├── studios.png ├── editScene.png ├── playScene.png ├── performer1.png ├── performer2.png ├── performer3.png ├── performers.png ├── performers_2.png ├── thumbs │ ├── movie.png │ ├── movies.png │ ├── scene1.png │ ├── scene2.png │ ├── scenes.png │ ├── studio.png │ ├── studios.png │ ├── editScene.png │ ├── performer1.png │ ├── performer2.png │ ├── performer3.png │ ├── performers.png │ ├── playScene.png │ └── performers_2.png ├── stock │ └── favicon.ico ├── macbook_screenshot_original.png ├── stash.svg └── AGPLv3_Logo.svg ├── .gitignore ├── _posts ├── _defaults.md └── 2019-07-12-a-new-beginning.md ├── _staff_members └── _defaults.md ├── robots.txt ├── 404.md ├── about.md ├── _sass ├── mixins │ ├── columns.scss │ └── flexbox.scss ├── variables.scss ├── elements.scss ├── navigation.scss ├── forms.scss ├── footer.scss ├── landing-page.scss └── layout.scss ├── _includes ├── relative-src.html ├── post-title.html ├── list-posts.html ├── navigation.html └── social-icon.html ├── contact.md ├── _data ├── footer.yml └── navigation.yml ├── Gemfile ├── css └── screen.scss ├── _layouts ├── page.html ├── archive.html ├── post.html └── default.html ├── .vscode └── tasks.json ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── discussion---request-for-commentary--rfc-.md │ └── bug_report.md └── PULL_REQUEST_TEMPLATE │ ├── BugFix.md │ └── Feature.md ├── blog └── index.html ├── README.md ├── documentation-community-lead.md ├── linguistics-community-lead.md ├── project-manager.md ├── CONTRIBUTING.md ├── volunteer.md ├── community-liaison.md ├── ui-ux-specialist.md ├── _config.yml ├── Gemfile.lock ├── index.html └── LICENSE.md /CNAME: -------------------------------------------------------------------------------- 1 | stashapp.cc -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- 1 | ## StashApp is ... pending more information here. 2 | -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/movie.png -------------------------------------------------------------------------------- /images/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/movies.png -------------------------------------------------------------------------------- /images/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/scene1.png -------------------------------------------------------------------------------- /images/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/scene2.png -------------------------------------------------------------------------------- /images/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/scenes.png -------------------------------------------------------------------------------- /images/stash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/stash.jpg -------------------------------------------------------------------------------- /images/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/studio.png -------------------------------------------------------------------------------- /images/studios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/studios.png -------------------------------------------------------------------------------- /images/editScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/editScene.png -------------------------------------------------------------------------------- /images/playScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/playScene.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-metadata 4 | *.png~ 5 | */.kra 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /_posts/_defaults.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3 | categories: 4 | author_staff_member: 5 | date: 6 | --- 7 | -------------------------------------------------------------------------------- /images/performer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performer1.png -------------------------------------------------------------------------------- /images/performer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performer2.png -------------------------------------------------------------------------------- /images/performer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performer3.png -------------------------------------------------------------------------------- /images/performers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performers.png -------------------------------------------------------------------------------- /images/performers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performers_2.png -------------------------------------------------------------------------------- /images/thumbs/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/movie.png -------------------------------------------------------------------------------- /images/stock/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/stock/favicon.ico -------------------------------------------------------------------------------- /images/thumbs/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/movies.png -------------------------------------------------------------------------------- /images/thumbs/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/scene1.png -------------------------------------------------------------------------------- /images/thumbs/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/scene2.png -------------------------------------------------------------------------------- /images/thumbs/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/scenes.png -------------------------------------------------------------------------------- /images/thumbs/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/studio.png -------------------------------------------------------------------------------- /images/thumbs/studios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/studios.png -------------------------------------------------------------------------------- /_staff_members/_defaults.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 3 | position: 4 | image_path: 5 | twitter: 6 | blurb: 7 | --- 8 | -------------------------------------------------------------------------------- /docs/kick-ascii/img/lbry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/docs/kick-ascii/img/lbry.png -------------------------------------------------------------------------------- /images/thumbs/editScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/editScene.png -------------------------------------------------------------------------------- /images/thumbs/performer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performer1.png -------------------------------------------------------------------------------- /images/thumbs/performer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performer2.png -------------------------------------------------------------------------------- /images/thumbs/performer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performer3.png -------------------------------------------------------------------------------- /images/thumbs/performers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performers.png -------------------------------------------------------------------------------- /images/thumbs/playScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/playScene.png -------------------------------------------------------------------------------- /images/thumbs/performers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performers_2.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | sitemap: false 4 | --- 5 | User-agent: * 6 | Sitemap: {{ site.url }}/sitemap.xml 7 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Not Found 3 | description: This does not exist 4 | permalink: /404.html 5 | sitemap: false 6 | --- 7 | -------------------------------------------------------------------------------- /images/macbook_screenshot_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/macbook_screenshot_original.png -------------------------------------------------------------------------------- /_posts/2019-07-12-a-new-beginning.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2019-07-12 3 | title: A new beginning 4 | --- 5 | 6 | Why we restarted everything -------------------------------------------------------------------------------- /docs/kick-ascii/cast/dev-env-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/docs/kick-ascii/cast/dev-env-install.png -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: About StashApp 3 | description: StashApp is a free, opensource porn Stash curation and streaming tool. 4 | --- 5 | -------------------------------------------------------------------------------- /_sass/mixins/columns.scss: -------------------------------------------------------------------------------- 1 | @mixin columns($value) { 2 | columns: $value; 3 | -webkit-columns: $value; 4 | -moz-columns: $value; 5 | } 6 | -------------------------------------------------------------------------------- /docs/kick-ascii/cast/dev-env-install.png.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/docs/kick-ascii/cast/dev-env-install.png.kra -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Docs 3 | description: Features and what you can do with StashApp 4 | --- 5 | 6 | - [Environment Variables and Configuration](/docs/env/) 7 | - [Quick Start - Docker](/docs/install/) 8 | -------------------------------------------------------------------------------- /_includes/relative-src.html: -------------------------------------------------------------------------------- 1 | {% assign prefix = include.src | slice: 0, 2 %}{% assign protocol = include.src | slice: 0, 4 %}{% unless protocol == 'http' or prefix == "//" %}{{ site.baseurl }}{% endunless %}{{ include.src }} 2 | -------------------------------------------------------------------------------- /contact.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contact 3 | heading: Get in touch today 4 | description: Join us on Discord 5 | --- 6 | 7 | [![Discord](https://img.shields.io/discord/559159668438728723.svg?label=Discord%20Chat)](https://discord.gg/2TsNFKt) 8 | -------------------------------------------------------------------------------- /_data/footer.yml: -------------------------------------------------------------------------------- 1 | # - links: 2 | # - name: About 3 | # link: /about/ 4 | # - name: Contact 5 | # link: /contact/ 6 | # - links: 7 | # - name: Docs 8 | # link: /docs/ 9 | # - name: Github 10 | # link: https://github.com/stashapp 11 | # new_window: true 12 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll' 4 | 5 | group :jekyll_plugins do 6 | gem 'jekyll-archives' 7 | gem 'jekyll-feed' 8 | gem 'jekyll-paginate' 9 | gem 'jekyll-seo-tag' 10 | gem 'jekyll-sitemap' 11 | gem 'tzinfo' 12 | gem 'tzinfo-data' 13 | end 14 | -------------------------------------------------------------------------------- /_includes/post-title.html: -------------------------------------------------------------------------------- 1 |

2 | {% for category in include.post.categories %} 3 | 4 | {{ category | capitalize }} 5 | 6 | {% endfor %} 7 | {{ include.post.date | date: "%B %d, %Y" }} 8 |

9 | -------------------------------------------------------------------------------- /css/screen.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | @import "mixins/flexbox"; 4 | @import "mixins/columns"; 5 | @import "variables"; 6 | @import "elements"; 7 | @import "landing-page"; 8 | @import "layout"; 9 | // @import "pricing"; 10 | // @import "staff"; 11 | // @import "contact"; 12 | // @import "blog"; 13 | @import "forms"; 14 | @import "navigation"; 15 | @import "footer"; 16 | -------------------------------------------------------------------------------- /_sass/variables.scss: -------------------------------------------------------------------------------- 1 | $body-bg: #30404d; 2 | $text-color: #f5f8fa; 3 | 4 | $brand-color: #202b33; 5 | $secondary-brand-color: #394b59; 6 | $middle-gradient-color: mix($brand-color, $secondary-brand-color, 95%); 7 | 8 | // Breakpoints 9 | $xs: "(max-width: 575px)"; 10 | $sm: "(min-width: 576px)"; 11 | $md: "(min-width: 768px)"; 12 | $lg: "(min-width: 992px)"; 13 | $xl: "(min-width: 1200px)"; 14 | -------------------------------------------------------------------------------- /_includes/list-posts.html: -------------------------------------------------------------------------------- 1 | {% for post in include.posts %} 2 |
  • 3 |

    {{ post.title }}

    4 | {% include post-title.html post=post %} 5 |
    6 | {{ post.excerpt }} 7 | 8 |
    9 |
  • 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
    5 |
    6 |
    7 | {% if page.heading %} 8 |

    {{ page.heading }}

    9 | {% elsif page.title and page.layout != 'archive' %} 10 |

    {{ page.title }}

    11 | {% endif %} 12 | {% if page.description %} 13 |

    {{ page.description }}

    14 | {% endif %} 15 | {{ content }} 16 |
    17 |
    18 |
    19 | -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- 1 | - name: "Source Code" 2 | link: https://github.com/stashapp/stash 3 | new_window: true 4 | highlight: false 5 | - name: Documentation 6 | link: https://docs.stashapp.cc 7 | new_window: true 8 | highlight: false 9 | - name: Volunteer 10 | link: /volunteer/ 11 | new_window: false 12 | highlight: false 13 | - name: Donate 14 | link: https://opencollective.com/stashapp 15 | new_window: true 16 | highlight: false 17 | #- name: Documentation 18 | # link: /docs/ 19 | # new_window: false 20 | # highlight: true 21 | -------------------------------------------------------------------------------- /_layouts/archive.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | --- 4 | 5 |
    6 | {% assign blog = site.pages | where: "path", "blog/index.html" | first %} 7 | 8 | {% if blog.title %} 9 |

    {{ blog.title }}

    10 | {% endif %} 11 | 12 | {% if blog.description %} 13 |

    {{ blog.description }}

    14 | {% endif %} 15 | 16 |
    17 | {{ page.title | capitalize }} 18 |
    19 | 20 | 23 |
    24 | -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "label": "Serve", 8 | "type": "shell", 9 | "command": "bundle exec jekyll serve --livereload", 10 | "group": { 11 | "kind": "test", 12 | "isDefault": true 13 | }, 14 | "isBackground": true, 15 | "problemMatcher": [] 16 | }, 17 | { 18 | "label": "Build", 19 | "type": "shell", 20 | "command": "bundle exec jekyll build", 21 | "group": { 22 | "kind": "build", 23 | "isDefault": true 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: "[Feature] Short Form Title (50 chars or less.)" 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/BugFix.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Fix 3 | about: Add a bug fix this project! 4 | title: "[Bug Fix] Short Form Title (50 chars or less.)" 5 | labels: bug 6 | assignees: 'WithoutPants, bnkai, Leopere' 7 | 8 | --- 9 | 10 | 11 | # Scope 12 | 13 | 14 | ## Closes/Fixes Issues 15 | 16 | 17 | ## Other testing QA Notes 18 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/Feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Addition 3 | about: Add a feature to this project! 4 | title: "[Feature] Short Form Title (50 chars or less.)" 5 | labels: enhancement 6 | assignees: 'WithoutPants, bnkai, Leopere' 7 | 8 | --- 9 | 11 | # Scope 12 | 13 | 14 | ## Closes/Fixes Issues 15 | 16 | 17 | ## Other testing QA Notes 18 | -------------------------------------------------------------------------------- /docs/kick-ascii/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
    8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /blog/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | description: Keep up with the latest news. 4 | --- 5 | 6 |
    7 | 8 | 11 | 12 | {% if paginator.total_pages > 1 %} 13 | 14 | 25 | {% endif %} 26 |
    27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Steps to contribute. 4 | 5 | ``` 6 | bundle install 7 | 8 | bundle exec jekyll serve 9 | ``` 10 | 11 | Note: On Windows, you will need to add the following to the gem file: 12 | 13 | ``` 14 | gem 'tzinfo' 15 | gem 'tzinfo-data' 16 | ``` 17 | 18 | Then run `gem install`. 19 | 20 | 21 | # Steps for forking 22 | 23 | We want the codebase to be fork-able at any point you might feel we're not doing a sufficiently good job and are for some reason are not seeing eye to eye. The beauty of Open Source software is you do not need to wait for us to catch up with you if you wish to hit the ground running. We encourage you to do exactly that by hopefully making this entire project self contained and functional by default. 24 | 25 | Ideally we won't accept commits that contain broken code, this can be simulated with squashing and rebasing before force pushing your forks. This way anyone pulling code will always have something reasonably functional to work off of and expect to compliment and not argue with your patches. 26 | -------------------------------------------------------------------------------- /_sass/elements.scss: -------------------------------------------------------------------------------- 1 | html { 2 | background: #2b2b40; 3 | } 4 | 5 | html, body { 6 | margin: 0; 7 | padding: 0; 8 | } 9 | 10 | body { 11 | font-family: "San Francisco", "Helvetica Neue", "Helvetica", "Arial"; 12 | background-color: $body-bg; 13 | color: $text-color; 14 | } 15 | 16 | a { 17 | color: #00a4ca; 18 | text-decoration: none; 19 | } 20 | 21 | a:hover { 22 | text-decoration: underline; 23 | } 24 | 25 | h1 strong, h2 strong { 26 | font-weight: 700; 27 | } 28 | 29 | h1 { 30 | font-weight: 300; 31 | font-size: 2.3em; 32 | margin: 0; 33 | 34 | &.title { 35 | height: 120px; 36 | font-size: 8em; 37 | vertical-align: middle; 38 | line-height: 120px; 39 | } 40 | } 41 | 42 | h2 { 43 | font-weight: 300; 44 | font-size: 2.2em; 45 | margin: 0 0 30px 0; 46 | } 47 | 48 | h3 { 49 | margin: 20px 0 10px 0; 50 | } 51 | 52 | 53 | p, address, ul { 54 | // font-size: 1.38em; 55 | margin-bottom: 20px; 56 | font-weight: 300; 57 | line-height: 1.4em; 58 | } 59 | 60 | .icon { 61 | height: 100px; 62 | 63 | svg { 64 | color: $text-color; 65 | max-height: 100%; 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Quick Start Installation of StashApp 3 | --- 4 | 5 | ### Recommended method is via [REDACTED] 6 | 7 | 8 | ### Local Development 9 | 10 | The steps are as follows: 11 | * Step One: `git clone https://github.com/stashapp/stash.git` 12 | * Step Two: Modify anything you want to in the source. 13 | * Step Three: `cd stashapp` 14 | * Step Four: `docker-compose up -d` 15 | * Step Five: `docker-compose ps` 16 | 17 | You should at this point have a working instance to play with at `http://localhost:900/` within moments. 18 | 19 | ### Console playback of Local Development installation 20 | 21 | 22 | 23 | ## Installation of a Production Instance 24 | 25 | Pending Documentation 26 | 27 | ## Compile from source 28 | Pending Documentation 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion---request-for-commentary--rfc-.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Discussion / Request for Commentary [RFC] 3 | about: This is for issues that will be discussed and won't necessarily result directly 4 | in commits or pull requests. 5 | title: "[RFC] Short Form Title" 6 | labels: help wanted 7 | assignees: '' 8 | 9 | --- 10 | 11 | 16 | 17 | ## Long Form 18 | 19 | 20 | ## Examples 21 | 22 | 23 | ## Reference Reading 24 | 25 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "[Bug Report] Short Form Subject (50 Chars or less)" 5 | labels: help wanted 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem please ensure that your screenshots are SFW or at least appropriately censored. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /documentation-community-lead.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Documentation Community Lead 3 | heading: Documentation Community Lead 4 | permalink: documentation-community-lead 5 | --- 6 | 7 | To be considered for this role, you should have a strong background in writing and editing technical documentation, be able to write in clear and concise English without using idioms or colloquialisms, and be comfortable working with tools such as GitHub, Git, AI, and other tools that could be appropriate for accomplishing documentation tasks and updates. 8 | 9 | As a Documentation Community Lead, you will be responsible for the following: 10 | 11 | - Writing and editing technical documentation clearly and concisely, understandable to individuals for whom English may be a second language. 12 | - Building relationships on behalf of the Stash community with developers, contributors and addressing community complaints to help increase documentation completeness and accuracy. 13 | - Regularly auditing the documentation to ensure that it is complete, accurate, and reflects the project's goals. 14 | - Ensuring that reading comprehension standards are applied to every portion of the applications we produce and maintain. 15 | 16 | If you are interested in this role and have relevant experience, please submit your application to stash-community-apps.xvb0n@simplelogin.com. -------------------------------------------------------------------------------- /_sass/navigation.scss: -------------------------------------------------------------------------------- 1 | .nav-open nav { 2 | border-bottom: 1px dotted rgba(255, 255, 255, .2); 3 | padding: 10px 0; 4 | a { 5 | display: block; 6 | } 7 | 8 | @media #{$md} { 9 | border: 0; 10 | padding: 0 20px; 11 | 12 | a { 13 | display: inline; 14 | } 15 | } 16 | } 17 | 18 | nav { 19 | text-transform: uppercase; 20 | font-size: .8em; 21 | width: 100%; 22 | 23 | @media #{$md} { 24 | text-align: right; 25 | position: absolute; 26 | top: 13px; 27 | right: 0; 28 | padding: 0 20px; 29 | } 30 | 31 | 32 | a { 33 | margin: 0 3px; 34 | padding: 20px 10px; 35 | border-bottom: 1px solid rgba(255,255,255,0); 36 | color: rgba(255,255,255,.8); 37 | transition: .2s ease-in-out; 38 | display: none; 39 | 40 | @media #{$md} { 41 | display: inline; 42 | padding: 10px; 43 | } 44 | 45 | 46 | &.nav-toggle { 47 | display: inline; 48 | position: absolute; 49 | right: 10px; 50 | top: -22px; 51 | font-size: 1.9em; 52 | border: 0; 53 | 54 | @media #{$md} { 55 | display: none; 56 | } 57 | 58 | &:hover { 59 | border: 0; 60 | } 61 | } 62 | } 63 | 64 | a:hover { 65 | 66 | border-bottom: 1px solid rgba(255,255,255,.3); 67 | color: #fff; 68 | } 69 | 70 | @media #{$md} { 71 | a.highlight { 72 | border: 1px #ccc solid; 73 | border-radius: 5px; 74 | 75 | &:hover { 76 | background: #fff; 77 | color: $brand-color; 78 | } 79 | } 80 | } 81 | 82 | a.active { 83 | color: #fff; 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /linguistics-community-lead.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Linguistics Community Lead 3 | heading: Linguistics Community Lead 4 | permalink: linguistics-community-lead 5 | --- 6 | 7 | We are looking for two individuals to take on the role of Linguistics Community Lead. They are passionate about Stash and are willing to share their time to help alleviate the pressure on the core development team. As a Linguistics Community Lead, you will be responsible for the following tasks: 8 | 9 | - Following up with our human translators to help encourage supported language completeness. 10 | - Writing in clear and concise English without using idioms or colloquialisms to be as understandable as possible to individuals for whom English may be a second language. 11 | - Building relationships on behalf of the Stash community with translators to help increase translation completeness. 12 | - Helping to ensure reading comprehension standards are applied to every portion of the applications we produce and maintain. 13 | - Working with tools such as GitHub, git, and Weblate for accomplishing translation tasks and updates. 14 | 15 | To be considered for this role, you should be a self-driven individual who is capable and willing to be persistent in making progress on project tasks, inspiring and patient. You should also be able to work well in a team and be humble, patient, accepting, and non-judgmental. 16 | 17 | If you are interested in this role and have relevant experience, please submit your application to stash-community-apps.xvb0n@simplelogin.com. -------------------------------------------------------------------------------- /_sass/forms.scss: -------------------------------------------------------------------------------- 1 | .button a, input[type=submit] { 2 | color: #fff; 3 | text-decoration: none; 4 | padding: 10px 30px; 5 | background: $brand-color; 6 | border-radius: 3px; 7 | border: 1px solid rgba(255,255,255,.5); 8 | transition: .2s ease-in-out; 9 | } 10 | 11 | .button a:hover, input[type=submit]:hover { 12 | border: 1px solid #fff; 13 | background: $secondary-brand-color; 14 | cursor: pointer; 15 | } 16 | 17 | .button.alt a { 18 | background: #42525b; 19 | border-radius: 10px; 20 | border: 1px solid rgba(255, 255, 255, 0.3); 21 | margin: 20px; 22 | } 23 | 24 | .button.alt a:hover { 25 | background: #fff; 26 | color: $brand-color; 27 | } 28 | 29 | textarea, input, button, select { font-family: inherit; font-size: inherit; } 30 | 31 | input[type=submit] { 32 | margin: 20px 0 0 0; 33 | } 34 | 35 | label, input, textarea { 36 | display: block; 37 | width: 100%; 38 | box-sizing: border-box; 39 | } 40 | 41 | textarea { 42 | resize: vertical; 43 | height: 150px; 44 | } 45 | 46 | label { 47 | margin: 20px 0 5px 0; 48 | } 49 | 50 | input, textarea { 51 | padding: 10px; 52 | font-size: 1em; 53 | } 54 | 55 | input, textarea { 56 | -webkit-transition: all 0.30s ease-in-out; 57 | -moz-transition: all 0.30s ease-in-out; 58 | -ms-transition: all 0.30s ease-in-out; 59 | -o-transition: all 0.30s ease-in-out; 60 | outline: none; 61 | border: 1px solid #DDDDDD; 62 | } 63 | 64 | input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus { 65 | box-shadow: 0 0 5px rgba(81, 203, 238, 1); 66 | border: 1px solid rgba(81, 203, 238, 1); 67 | } 68 | -------------------------------------------------------------------------------- /project-manager.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Project Manager 3 | heading: Project Manager 4 | permalink: project-manager 5 | --- 6 | 7 | We are seeking two motivated individuals to fill the role of Project Manager. The successful candidate will ensure the timely and effective completion of tasks outside of bounties while keeping project scope and technical debt under control. They will also play a key role in managing community expectations and triaging Pull Requests and issues submitted by community members. 8 | 9 | Key responsibilities: 10 | 11 | - Ensuring that tasks outside bounties are managed and mapped in "timelines". 12 | - Keeping project scope and technical debt under control. 13 | - Managing expectations of the community and helping triage Pull Requests and community-submitted issues. 14 | - Writing in clear and concise English, avoiding idioms and colloquialisms to be as understandable as possible to individuals for whom English may be a second language. 15 | - Maintaining a neutral and patient approach in all interactions, focusing on the project's goals as best as possible. 16 | - Being self-directed and comfortable reaching out for support when needed. 17 | 18 | To be considered for this role, you should be a self-driven individual who is capable and willing to be persistent in making progress on project tasks, inspiring and patient. You should also be able to work well in a team and be humble, patient, accepting, and non-judgmental. 19 | 20 | If you are interested in this role and have relevant experience, please submit your application to stash-community-apps.xvb0n@simplelogin.com. -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | ## Technical Debt 3 | Please be sure to consider how heavily your contribution impacts the maintainability of the project long term, sometimes less is more. We don't want to merge collossal pull requests with hundreds of dependencies by a driveby contributor. 4 | 5 | ## Contributor Checklist 6 | Please make sure that you've considered the following before you submit your Pull Requests as ready for merging. 7 | * I've run Code linters and [gofmt](https://golang.org/cmd/gofmt/) to make sure that my code is readable. 8 | * I have read through formerly submitted [pull requests](https://github.com/stashapp/stash/pulls) and [git issues](https://github.com/stashapp/stash/issues) to make sure that this contribution is required and isn't a duplicate. Also, so that I can manage to close any git Issues needing closed relating to this feature submission. 9 | * I commented adequately on my code with the expectation in mind that anyone else should be able to look at this code I've submitted and know exactly what's happening and what the expectations are. 10 | 11 | ### Legal Agreements 12 | * I acknowledge that if applicable to me, submitting and subsequent acceptance of this Pull Request I, the code contributor of this Pull Request, agree and acknowledge my understanding that the new code license has now been updated to [AGPL](/LICENSE.md). I agree that all code before this Pull Request, which I've previously submitted, is now to be re-licensed under the new license AGPL and no longer the former MIT license. 13 | 14 | **In case you were unable to follow any of the above include an explanation as to why not in your Pull Request.** 15 | -------------------------------------------------------------------------------- /volunteer.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Volunteer for Stash 3 | heading: Self-Driven and Persistent Team Players 4 | description: 5 | --- 6 | 7 | As we continue to grow and expand the Stash community, we seek individuals who are self-driven and persistent in their efforts to progress on project tasks. We are looking for team players who are: 8 | 9 | - Capable: taking on new responsibilities and learning new skills quickly. 10 | - Willing: persevering through challenges and setbacks and following up on tasks and issues that need attention. 11 | - Inspiring: able to motivate and encourage others to work together towards a common goal. 12 | - Patient: able to handle uncertainty and ambiguity with grace and understanding. 13 | - Willing to speak up: when something seems unclear or if they feel like they are being misrepresented or underutilized. 14 | 15 | Our goal is to create a team of individuals driven by a shared passion for the project and a commitment to its success and continuity. By working together, we can achieve great things and make a real impact on our community. 16 | 17 | It's important to mention that we're looking to recruit redundant roles to ensure project continuity and prepare for different availability and potential contributor burnout. 18 | 19 | ### Available Roles 20 | - [Linguistics Community Lead (2 positions available)]({{ site.url }}/linguistics-community-lead) 21 | - [Documentation Community Lead (2 positions available)]({{ site.url }}/documentation-community-lead) 22 | - [Project Manager (2 position available)]({{ site.url }}/project-manager) 23 | - [Community Liaison (2 position available)]({{ site.url }}/community-liaison) 24 | - [UI/UX Specialist (2 positions available)]({{ site.url }}/ui-ux-specialist) 25 | -------------------------------------------------------------------------------- /community-liaison.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Community Liaison 3 | heading: Community Liaison 4 | permalink: community-liaison 5 | --- 6 | 7 | As the Community Liaison Lead, you will be responsible for maintaining considerable patience and understanding with individuals from all walks of life. Your role requires a strong focus on neutrality in conversation and providing guidance rather than a heavy hand. 8 | 9 | You will be responsible for the following: 10 | - Writing in clear and concise English without using idioms or colloquialisms to be as understandable as possible to a broad audience. 11 | - Interacting with community members in a politically neutral manner, focused purely on the project's goals. 12 | - Looking for sticking points for community members and helping them find solutions, and bringing to the attention of the developers or other appropriate members of the team ways that they could engineer the landscape for more successful outcomes. 13 | - Being as swift as possible and keeping potential disputes as private as possible while not making it impossible to follow up in disaster scenarios. 14 | - Building relationships with team members rather than community-facing. 15 | - Having an intimate knowledge of our platform ensures that you're focusing on being helpful when needed but not obligated to be responsive in every scenario all the time. 16 | 17 | To be considered for this role, you should have the following: 18 | - Strong communication skills, both verbal and written. 19 | - A keen but impartial eye. 20 | - Good understanding of the project goals and community needs. 21 | - Strong focus on neutrality in conversation. 22 | - Good knowledge of the platform. 23 | 24 | If you are interested in this role and have relevant experience, please submit your application to stash-community-apps.xvb0n@simplelogin.com. -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | --- 4 |
    5 | {% include post-title.html post=page %} 6 | 7 | 8 |
    9 | {{ content }} 10 | 11 |
    12 | {% assign author_id = page.author_staff_member | prepend: "/staff_members/" | append: "/" %} 13 | {% assign author = site.staff_members | where: "url", author_id | first %} 14 |
    {{ author.name }}
    15 |

    {{ author.blurb }}

    16 |
    17 | 18 |
    19 | {% if page.previous.url %} 20 | 21 | {% endif %} 22 | {% if page.next.url %} 23 | 24 | {% endif %} 25 |
    26 | 27 | {% if site.disqus_shortname and page.comments %} 28 |
    29 | 43 | 44 | {% endif %} 45 |
    46 |
    47 | -------------------------------------------------------------------------------- /ui-ux-specialist.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: UI/UX Specialist 3 | heading: UI/UX Specialist 4 | permalink: ui-ux-specialist 5 | --- 6 | 7 | As the Stash community continues to grow and evolve, there is a growing interest in refining the UI/UX of Stash and StashBox to make the experience more accessible. The goal is to guide the community toward achieving this abstract goal. Still, it is essential to note that changes require significant time and attention investments from core contributors. 8 | 9 | To achieve this goal, the following will be taken into consideration: 10 | 11 | * Ensuring that all changes do not regress the software or break deployments 12 | * Avoiding creating unnecessary forks 13 | * Ensuring that what is deployed has a smooth upgrade path that doesn't require advanced user knowledge to follow 14 | The plan of action is as follows: 15 | * Examining user-submitted, community-maintained CSS tweaks to the base of Stash and identifying which pieces can be merged into the main UI 16 | * Mastering the current UI as best as possible by clarifying documentation and establishing unit testing 17 | * Utilizing Selenium/Playwright tests in the CI/CD process to ensure that changes don't regress 18 | * Identifying pain points in the current UI and addressing them with the least impacts and the most achievable improvements to the user experience 19 | * If necessary, consider a new version of the whole UI, but not alienating the current user base to appeal to a theoretical one. 20 | 21 | Whether this will become an actual role is still up in the air. However, to be considered for this role, you should be a self-driven individual who is capable and willing to be persistent in making progress on project tasks, inspiring and patient. You should also be able to work well in a team and be humble, patient, accepting, and non-judgmental. 22 | 23 | If you are interested in this role and have relevant experience, please submit your application to stash-community-apps.xvb0n@simplelogin.com. -------------------------------------------------------------------------------- /_sass/footer.scss: -------------------------------------------------------------------------------- 1 | .footer-links { 2 | width: 100%; 3 | margin: 10px; 4 | padding: 0; 5 | 6 | @media #{$sm} { 7 | -webkit-flex: 1 0 180px; 8 | flex: 1 0 180px; 9 | } 10 | 11 | li { 12 | list-style: none; 13 | margin: 15px auto; 14 | 15 | @media #{$sm} { 16 | max-width: 150px; 17 | } 18 | a { 19 | 20 | &:hover { 21 | text-decoration: none; 22 | } 23 | svg { 24 | fill: #999; 25 | margin-right: 10px; 26 | transition: fill 0.2s ease; 27 | vertical-align: middle; 28 | position: relative; 29 | top: -2px; 30 | width: 22px; 31 | height: 22px; 32 | } 33 | 34 | &:hover svg { 35 | fill: #fff; 36 | } 37 | 38 | &.twitter-icon:hover svg { 39 | fill: #55acee; 40 | } 41 | 42 | &.google-plus-icon:hover svg { 43 | fill: #db4437; 44 | } 45 | 46 | &.youtube-icon:hover svg { 47 | fill: #cd201f; 48 | } 49 | 50 | &.instagram-icon:hover svg { 51 | fill: #f167f5; 52 | } 53 | 54 | &.linkedin-icon:hover svg { 55 | fill: #0077b5; 56 | } 57 | 58 | &.pinterest-icon:hover svg { 59 | fill: #bd081c; 60 | } 61 | 62 | &.rss-icon:hover svg { 63 | fill: #f26522; 64 | } 65 | } 66 | } 67 | } 68 | 69 | footer { 70 | padding: 50px 0 50px 0; 71 | font-size: 1.1em; 72 | position: relative; 73 | background: #2b2b40; 74 | color: #fff; 75 | 76 | .copyright { 77 | font-size: .8em; 78 | margin: 0 auto; 79 | 80 | @media #{$sm} { 81 | text-align: center; 82 | } 83 | 84 | } 85 | 86 | &, 87 | a { 88 | color: #999; 89 | } 90 | 91 | h2 { 92 | font-size: 1.4em; 93 | margin: 30px 0; 94 | color: #ccc; 95 | } 96 | 97 | .footer-columns { 98 | @extend %flexbox; 99 | @include flex-flow(wrap); 100 | margin: -10px -10px 10px -10px; 101 | } 102 | 103 | a { 104 | text-decoration: none; 105 | 106 | &:hover { 107 | color: #fff; 108 | } 109 | } 110 | 111 | .legal-line { 112 | width: 100%; 113 | padding: 30px 0; 114 | margin: 0; 115 | background-color: #222527; 116 | 117 | a { 118 | font-weight: 600; 119 | } 120 | } 121 | } 122 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # ---- 2 | # Site 3 | 4 | title: Stash 5 | url: "https://stashapp.cc" 6 | baseurl: 7 | google_analytics_key: 8 | google_maps_javascript_api_key: 9 | disqus_shortname: 10 | 11 | # Values for the jekyll-seo-tag gem (https://github.com/jekyll/jekyll-seo-tag) 12 | logo: /siteicon.png 13 | description: An organizer for your porn 14 | author: 15 | name: 16 | email: 17 | twitter: # twitter username without the @ symbol 18 | 19 | # ----- 20 | # Build 21 | timezone: Etc/UTC 22 | 23 | collections: 24 | staff_members: 25 | _hide_content: true 26 | 27 | paginate: 10 28 | paginate_path: "/blog/:num/" 29 | permalink: pretty 30 | 31 | defaults: 32 | # - 33 | # scope: 34 | # path: "" 35 | # type: "posts" 36 | # values: 37 | # layout: "post" 38 | # _options: 39 | # content: 40 | # width: 1500 41 | # height: 2500 42 | # - 43 | # scope: 44 | # path: "" 45 | # type: "staff_members" 46 | # values: 47 | # _options: 48 | # image_path: 49 | # width: 600 50 | # height: 600 51 | - 52 | scope: 53 | path: "" 54 | values: 55 | layout: "page" 56 | - 57 | scope: 58 | path: "index.html" 59 | values: 60 | layout: "default" 61 | #- 62 | # scope: 63 | # path: "contact.html" 64 | # values: 65 | # full_width: true 66 | 67 | jekyll-archives: 68 | enabled: 69 | - categories 70 | 71 | plugins: 72 | - jekyll-archives 73 | - jekyll-sitemap 74 | - jekyll-seo-tag 75 | - jekyll-feed 76 | - jekyll-paginate 77 | 78 | exclude: 79 | - Gemfile 80 | - Gemfile.lock 81 | - README.md 82 | - LICENCE 83 | 84 | # ----------- 85 | # CloudCannon 86 | 87 | social_icons: 88 | - Facebook 89 | - Google Plus 90 | - Instagram 91 | - LinkedIn 92 | - Pinterest 93 | - Tumblr 94 | - Twitter 95 | - YouTube 96 | - RSS 97 | 98 | _comments: 99 | map: Update the map location and display settings. 100 | latitude: Coordinates for the center marker on the map. 101 | longitude: Coordinates for the center marker on the map. 102 | zoom: The zoom level for the map. 103 | pricing_table: Update the information in the pricing tables. 104 | highlight: Emphasis the text 105 | color: The background colour used in the plan name and call to action. 106 | new_window: Open link in new window 107 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.1) 5 | public_suffix (>= 2.0.2, < 6.0) 6 | colorator (1.1.0) 7 | concurrent-ruby (1.2.0) 8 | em-websocket (0.5.3) 9 | eventmachine (>= 0.12.9) 10 | http_parser.rb (~> 0) 11 | eventmachine (1.2.7) 12 | ffi (1.15.5-x64-mingw-ucrt) 13 | forwardable-extended (2.6.0) 14 | google-protobuf (3.21.12-x64-mingw-ucrt) 15 | http_parser.rb (0.8.0) 16 | i18n (1.12.0) 17 | concurrent-ruby (~> 1.0) 18 | jekyll (4.3.2) 19 | addressable (~> 2.4) 20 | colorator (~> 1.0) 21 | em-websocket (~> 0.5) 22 | i18n (~> 1.0) 23 | jekyll-sass-converter (>= 2.0, < 4.0) 24 | jekyll-watch (~> 2.0) 25 | kramdown (~> 2.3, >= 2.3.1) 26 | kramdown-parser-gfm (~> 1.0) 27 | liquid (~> 4.0) 28 | mercenary (>= 0.3.6, < 0.5) 29 | pathutil (~> 0.9) 30 | rouge (>= 3.0, < 5.0) 31 | safe_yaml (~> 1.0) 32 | terminal-table (>= 1.8, < 4.0) 33 | webrick (~> 1.7) 34 | jekyll-archives (2.2.1) 35 | jekyll (>= 3.6, < 5.0) 36 | jekyll-feed (0.17.0) 37 | jekyll (>= 3.7, < 5.0) 38 | jekyll-paginate (1.1.0) 39 | jekyll-sass-converter (3.0.0) 40 | sass-embedded (~> 1.54) 41 | jekyll-seo-tag (2.8.0) 42 | jekyll (>= 3.8, < 5.0) 43 | jekyll-sitemap (1.4.0) 44 | jekyll (>= 3.7, < 5.0) 45 | jekyll-watch (2.2.1) 46 | listen (~> 3.0) 47 | kramdown (2.4.0) 48 | rexml 49 | kramdown-parser-gfm (1.1.0) 50 | kramdown (~> 2.0) 51 | liquid (4.0.4) 52 | listen (3.8.0) 53 | rb-fsevent (~> 0.10, >= 0.10.3) 54 | rb-inotify (~> 0.9, >= 0.9.10) 55 | mercenary (0.4.0) 56 | pathutil (0.16.2) 57 | forwardable-extended (~> 2.6) 58 | public_suffix (5.0.1) 59 | rb-fsevent (0.11.2) 60 | rb-inotify (0.10.1) 61 | ffi (~> 1.0) 62 | rexml (3.2.5) 63 | rouge (4.0.1) 64 | safe_yaml (1.0.5) 65 | sass-embedded (1.57.1-x64-mingw-ucrt) 66 | google-protobuf (~> 3.21) 67 | terminal-table (3.0.2) 68 | unicode-display_width (>= 1.1.1, < 3) 69 | tzinfo (2.0.5) 70 | concurrent-ruby (~> 1.0) 71 | tzinfo-data (1.2022.7) 72 | tzinfo (>= 1.0.0) 73 | unicode-display_width (2.4.2) 74 | webrick (1.7.0) 75 | 76 | PLATFORMS 77 | x64-mingw-ucrt 78 | 79 | DEPENDENCIES 80 | jekyll 81 | jekyll-archives 82 | jekyll-feed 83 | jekyll-paginate 84 | jekyll-seo-tag 85 | jekyll-sitemap 86 | tzinfo 87 | tzinfo-data 88 | 89 | BUNDLED WITH 90 | 2.3.21 91 | -------------------------------------------------------------------------------- /docs/kick-ascii/kick-ascii.js: -------------------------------------------------------------------------------- 1 | window.onload = function() { 2 | var crt = document.getElementById("CRT_BOX") 3 | var urlParams = new URLSearchParams(window.location.search) 4 | var cast = urlParams.get("cast") != null ? urlParams.get("cast") : "index" 5 | var speed = urlParams.get("speed") == null ? " speed=\"1\" " : " speed=\"" + urlParams.get("speed") + "\" " 6 | var bg = urlParams.get("bg") 7 | var autoplay = urlParams.get("autoplay") === "false" ? "" : " autoplay=\"true\" " 8 | var loop = urlParams.get("loop") === "false" ? "" : " loop=\"true\" " 9 | var preload = urlParams.get("preload") === "false" ? "" : " preload=\"true\" " 10 | var fontsize = urlParams.get("fontsize") == null ? " fontsize=\"small\" " : " fontsize=\"" + urlParams.get("fontsize") + "\" " 11 | 12 | crt.innerHTML = "" 13 | 14 | var player = document.getElementsByTagName("asciinema-player")[0] 15 | 16 | var background = document.createElement("img") 17 | background.classList.add("bg_image") 18 | 19 | if (bg != null) { 20 | background.src = "img/" + bg 21 | document.body.append(background) 22 | } 23 | 24 | window.addEventListener('resize', function() { 25 | var wrapper = document.getElementsByClassName("asciinema-player-wrapper")[0] 26 | if (wrapper != null) { 27 | var control_bar_offset = 23; 28 | var scale = (document.body.clientHeight / (wrapper.clientHeight + control_bar_offset)); 29 | if (wrapper.clientWidth * scale < document.body.clientWidth) { 30 | crt.style.transform = "scale("+scale+") translate(-50%, 0%)"; 31 | crt.classList.add("crt_wide") 32 | background.classList.remove("bg_raised") 33 | } else { 34 | scale = (document.body.clientWidth / (wrapper.clientWidth)); 35 | crt.style.transform = "scale("+scale+")"; 36 | crt.classList.remove("crt_wide") 37 | background.classList.add("bg_raised") 38 | } 39 | } 40 | }); 41 | window.dispatchEvent(new Event('resize')); 42 | setInterval(function(){window.dispatchEvent(new Event('resize'));}, 1000) 43 | 44 | var playing = true; 45 | let drag = false; 46 | 47 | // Click anywhere to play/pause 48 | // Allow selecting/dragging text without affecting play/pause 49 | document.addEventListener('mousedown', () => drag = false); 50 | document.addEventListener('mousemove', () => drag = true); 51 | document.addEventListener('mouseup', function() { 52 | if(!drag){ 53 | if (playing) { 54 | player.pause() 55 | playing = false 56 | } else { 57 | player.play() 58 | playing = true 59 | } 60 | } 61 | }) 62 | } 63 | -------------------------------------------------------------------------------- /images/stash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 42 | 44 | 45 | 47 | image/svg+xml 48 | 50 | 51 | 52 | 53 | 54 | 59 | 64 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /_sass/landing-page.scss: -------------------------------------------------------------------------------- 1 | .bottom-cta { 2 | background: linear-gradient(to bottom, $brand-color 0%, $middle-gradient-color 100%); 3 | color: #fff; 4 | text-align: center; 5 | margin: 0; 6 | padding: 100px 0; 7 | 8 | h2 { 9 | margin-bottom: 50px; 10 | } 11 | 12 | p { 13 | margin-top: -50px; 14 | margin-bottom: 50px; 15 | color: #fff; 16 | } 17 | } 18 | 19 | .content section { 20 | //width: 100%; 21 | // padding-top: 50px; 22 | 23 | .main { 24 | text-align: center; 25 | //max-width: 800px; 26 | margin: auto; 27 | } 28 | 29 | &:nth-child(even) { 30 | background-color: $brand-color; 31 | } 32 | 33 | .feature { 34 | text-align: center; 35 | //max-width: 100vw; 36 | margin: auto; 37 | display: flex; 38 | justify-content: center; 39 | align-items: center; 40 | flex-wrap: wrap; 41 | 42 | .half { 43 | width: 80%; 44 | display: inline-block; 45 | margin-left: 20px; 46 | margin-right: 20px; 47 | 48 | @media #{$md} { 49 | width: 40%; 50 | } 51 | 52 | img { 53 | max-width: 100%; 54 | border: 1px solid #00000033; 55 | padding: 10px; 56 | } 57 | } 58 | } 59 | } 60 | 61 | .concepts { 62 | display: flex; 63 | justify-content: center; 64 | flex-wrap: wrap; 65 | } 66 | 67 | .concept { 68 | margin: 20px; 69 | text-align: center; 70 | 71 | p { 72 | max-width: 25ch; 73 | } 74 | } 75 | 76 | 77 | .hero { 78 | text-align: center; 79 | padding-top: 50px; 80 | min-height: calc(100vh - 300px); 81 | position: relative; 82 | 83 | display: flex; 84 | align-items: center; 85 | justify-content: center; 86 | 87 | .button-group { 88 | margin-top: 50px; 89 | } 90 | 91 | p { 92 | color: #fff; 93 | } 94 | 95 | #hero-image, 96 | #hero-image-alt { 97 | background-image: url(../images/scenes.png); 98 | background-position: center; 99 | background-size: contain; 100 | background-repeat: no-repeat; 101 | opacity: 0.25; 102 | top: 0; 103 | left: 0; 104 | right: 0; 105 | bottom: 0; 106 | position: absolute; 107 | transition: opacity 2s; 108 | } 109 | 110 | #hero-image-alt { 111 | opacity: 0; 112 | } 113 | } 114 | 115 | img.agpl-logo { 116 | padding: 10px; 117 | background-color: #ddd; 118 | } 119 | 120 | .screenshots { 121 | display: flex; 122 | flex-wrap: wrap; 123 | align-items: center; 124 | justify-content: center; 125 | 126 | a { 127 | width: 70%; 128 | margin: 10px; 129 | border: 1px solid rgba(255,255,255,0.15); 130 | padding: 10px; 131 | 132 | img { 133 | width: 100%; 134 | } 135 | 136 | @media #{$md} { 137 | width: 35%; 138 | } 139 | 140 | @media #{$lg} { 141 | width: 28%; 142 | } 143 | 144 | @media #{$xl} { 145 | width: 21%; 146 | } 147 | } 148 | } 149 | 150 | .video { 151 | margin-top: 10px; 152 | 153 | iframe { 154 | width: 640px; 155 | max-width: 100%; 156 | height: 360px; 157 | } 158 | } 159 | 160 | @media #{$md} { 161 | .flex { 162 | @include flexbox; 163 | align-items: center; 164 | flex-direction: row; 165 | 166 | .text, .image { 167 | -webkit-flex: 1; 168 | flex: 1; 169 | padding: 0 20px; 170 | } 171 | } 172 | 173 | .content section:nth-child(even) .flex { 174 | flex-direction: row-reverse; 175 | } 176 | } 177 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {% seo %} 9 | {% feed_meta %} 10 | 11 | 12 | 13 | 14 | {% if jekyll.environment == 'production' and site.google_analytics_key != '' %} 15 | 21 | {% endif %} 22 | 23 | 24 |
    25 |
    26 | 32 | 33 | {% include navigation.html %} 34 |
    35 |
    36 | {{ content }} 37 | 56 | 57 | 63 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /_sass/layout.scss: -------------------------------------------------------------------------------- 1 | .container, .text-container { 2 | margin: 0 auto; 3 | position: relative; 4 | padding: 0 20px; 5 | } 6 | 7 | .text-container { 8 | max-width: 750px; 9 | margin-bottom: 20px; 10 | } 11 | 12 | .container { 13 | max-width: 100%; 14 | //background-color: $brand-color; 15 | 16 | &.max-container { 17 | max-width: 100%; 18 | padding: 0; 19 | } 20 | 21 | @media #{$sm} { 22 | max-width: 540px; 23 | } 24 | 25 | @media #{$md} { 26 | max-width: 720px; 27 | } 28 | 29 | @media #{$lg} { 30 | max-width: 960px; 31 | } 32 | 33 | @media #{$xl} { 34 | max-width: 1140px; 35 | } 36 | } 37 | 38 | 39 | 40 | header { 41 | color: #f5f8fa; 42 | padding: 20px 0; 43 | background: $brand-color; 44 | 45 | a { 46 | color: #fff; 47 | text-decoration: none; 48 | z-index: 1; 49 | position: relative; 50 | 51 | &:hover { 52 | text-decoration: none; 53 | } 54 | } 55 | 56 | .company-name { 57 | font-size: 1.7em; 58 | line-height: 25px; 59 | 60 | a { 61 | display: inline-block; 62 | } 63 | 64 | img.logo { 65 | height: 25px; 66 | display: inline-block; 67 | } 68 | 69 | img { 70 | display: block; 71 | width: auto; 72 | } 73 | } 74 | } 75 | 76 | .content { 77 | padding: 1px 0 0 0; 78 | position: relative; 79 | background-color: #394b59; 80 | width: 100%; 81 | } 82 | 83 | .screenshot{ 84 | max-width: 100%; 85 | height: auto; 86 | display: block; 87 | box-shadow: 0 1px 0 #ccc, 0 1px 0 1px #eee; 88 | border-radius: 2px; 89 | margin-left: auto; 90 | margin-right: auto; 91 | margin-bottom: 20px; 92 | background: #DDD url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2212%22%20viewBox%3D%220%200%2044%2012%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3Ccircle%20cx%3D%2222%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3Ccircle%20cx%3D%2238%22%20cy%3D%226%22%20r%3D%224%22%20fill%3D%22%23eee%22%20%2F%3E%3C%2Fsvg%3E') 4px 4px no-repeat; 93 | padding: 20px 0 0 0; 94 | position: relative; 95 | } 96 | 97 | section { 98 | padding: 50px 0; 99 | } 100 | 101 | // section + section { 102 | // padding-top: 0; 103 | // } 104 | 105 | .subtext { 106 | margin-top: 10px; 107 | text-align: center; 108 | } 109 | 110 | 111 | .cta { 112 | margin: 60px 0; 113 | } 114 | 115 | .page h2 { 116 | text-align: center; 117 | } 118 | 119 | blockquote { 120 | padding: 18px 25px; 121 | margin: 0; 122 | quotes: "\201C""\201D""\2018""\2019"; 123 | font-style: italic; 124 | 125 | .author { 126 | display: block; 127 | font-weight: bold; 128 | margin: 10px 0 0 0; 129 | font-size: .85em; 130 | font-style: normal; 131 | } 132 | 133 | p { 134 | display: inline; 135 | } 136 | } 137 | 138 | blockquote:before { 139 | color: #ccc; 140 | content: open-quote; 141 | font-size: 4em; 142 | line-height: 0.1em; 143 | margin-right: 0.25em; 144 | vertical-align: -0.4em; 145 | } 146 | 147 | .square-image { 148 | width: 150px; 149 | height: 150px; 150 | overflow: hidden; 151 | margin: 25px auto 0 auto; 152 | position: relative; 153 | border-radius: 200px; 154 | 155 | img { 156 | position: absolute; 157 | left: -1000%; 158 | right: -1000%; 159 | top: -1000%; 160 | bottom: -1000%; 161 | margin: auto; 162 | width: 300px; 163 | } 164 | } 165 | 166 | .page { 167 | margin-bottom: 0; 168 | padding-bottom: 80px; 169 | } 170 | 171 | .center-text { 172 | text-align: center; 173 | } 174 | 175 | .editor-link { 176 | display: none; 177 | margin-top: 0; 178 | .btn { 179 | border: 0; 180 | border-radius: 2px; 181 | width: 100%; 182 | max-width: 500px; 183 | box-sizing: border-box; 184 | font-size: 2rem; 185 | text-decoration: none; 186 | padding: 10px 15px; 187 | margin: 0; 188 | font-size: 18px; 189 | cursor: pointer; 190 | background-color: #f7e064; 191 | color: #333; 192 | box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2); 193 | 194 | &:hover { 195 | background-color: #f4d525; 196 | color: #333; 197 | } 198 | } 199 | } 200 | -------------------------------------------------------------------------------- /_includes/social-icon.html: -------------------------------------------------------------------------------- 1 | {% case include.icon %} 2 | {% when "Facebook" %} 3 | 4 | {% when "Google Plus" %} 5 | 6 | {% when "Instagram" %} 7 | 8 | {% when "LinkedIn" %} 9 | 10 | {% when "Pinterest" %} 11 | 12 | {% when "Tumblr" %} 13 | 14 | {% when "Twitter" %} 15 | 16 | {% when "YouTube" %} 17 | 18 | {% when "RSS" %} 19 | 20 | {% endcase %} 21 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stash 3 | description: An organizer for your porn 4 | --- 5 | 68 | 69 |
    70 |
    71 |
    72 |
    73 |
    74 |
    75 |
    76 |

    Stash - an organizer for your porn

    77 | 78 |
    79 | 82 |
    83 |
    84 |
    85 |
    86 | 87 |
    88 |
    89 |
    90 |
    91 |

    What is Stash?

    92 |

    93 | Stash allows you to organize and view your own collection of adult video and image files. 94 | Think of it like a private PornHub site for your personal porn collection. 95 |

    96 |
    97 |
    98 |
    99 |
    100 | 101 | 102 |
    103 |

    Scenes

    104 |

    Every video file has its own scene. Scenes can be rated and tagged with performers, tags, movies and a studio.

    105 |
    106 |
    107 |
    108 | 109 | 110 |
    111 |

    Markers

    112 |

    Bookmark your favorite parts of a scene with markers. Markers can be tagged and appear in the video scrubber when viewing a scene.

    113 |
    114 |
    115 |
    116 | 117 | 118 |
    119 |

    Images

    120 |

    Images can be rated and tagged with performers, tags and a studio.

    121 |
    122 |
    123 |
    124 | 125 | 126 |
    127 |

    Galleries

    128 |

    Galleries are collections of images. Galleries can be automatically created from zip files and folders containing image files.

    129 |
    130 |
    131 |
    132 |
    133 | 134 |
    135 |
    136 |
    137 | 138 |
    139 |
    140 |
    141 |

    View your content

    142 |

    143 | Preview and view all of your scenes and galleries from your web browser on your PC, tablet or phone. Stash directly streams videos to your web browser. 144 | Stash supports streaming of a large variety of formats and codecs to most web browsers. 145 |

    146 |
    147 |
    148 |
    149 |
    150 | 151 |
    152 |
    153 |
    154 |
    155 |

    Curate your content

    156 |

    Rate your scenes and images, and tag them with performers, tags, movies and studios. Filter and sort your content with a variety of filter and sorting options.

    157 |

    Stash also allows you to derive metadata from filenames. Alternatively, you can scrape metadata from websites using community-curated scrapers.

    158 |
    159 |
    160 |
    161 | 162 |
    163 |
    164 |
    165 | 166 |
    167 |
    168 |
    169 |
    170 | 171 | 172 |
    173 |
    174 |
    175 |
    176 |

    Stash is private

    177 |

    Stash operates on your own network. Your collection is not shared anywhere.

    178 |

    You can even password protect it.

    179 |
    180 |
    181 |
    182 |
    183 | 184 |
    185 |
    186 |
    187 |
    188 |

    Stash is free

    189 |

    Stash is developed by volunteers and is licensed under the GNU AGPL. This means that it is, and always will be, free.

    190 |
    191 |
    192 |
    193 | 194 |
    195 |
    196 |
    197 | 198 |
    199 |
    200 |

    See it in action

    201 |
    Checkout the (safe for work) demo video below.
    202 |
    203 | 204 |
    205 | 206 |
    207 |
    208 | 209 |
    210 |
    211 |

    Screenshots

    212 |
    213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 |
    221 |
    222 |
    223 | 224 |
    225 |
    226 |

    Upcoming features

    227 |

    228 | View the milestones for upcoming features in the next versions 229 | here. 230 |

    231 |
    232 |
    233 |
    234 | -------------------------------------------------------------------------------- /_sass/mixins/flexbox.scss: -------------------------------------------------------------------------------- 1 | // Flexbox Mixins 2 | // http://philipwalton.github.io/solved-by-flexbox/ 3 | // https://github.com/philipwalton/solved-by-flexbox 4 | // 5 | // Copyright (c) 2013 Brian Franco 6 | // 7 | // Permission is hereby granted, free of charge, to any person obtaining a 8 | // copy of this software and associated documentation files (the 9 | // "Software"), to deal in the Software without restriction, including 10 | // without limitation the rights to use, copy, modify, merge, publish, 11 | // distribute, sublicense, and/or sell copies of the Software, and to 12 | // permit persons to whom the Software is furnished to do so, subject to 13 | // the following conditions: 14 | // The above copyright notice and this permission notice shall be included 15 | // in all copies or substantial portions of the Software. 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 17 | // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 21 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 22 | // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | // 24 | // This is a set of mixins for those who want to mess around with flexbox 25 | // using the native support of current browsers. For full support table 26 | // check: http://caniuse.com/flexbox 27 | // 28 | // Basically this will use: 29 | // 30 | // * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping) 31 | // * Final standards syntax (FF, Safari, Chrome, IE11, Opera) 32 | // 33 | // This was inspired by: 34 | // 35 | // * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ 36 | // 37 | // With help from: 38 | // 39 | // * http://w3.org/tr/css3-flexbox/ 40 | // * http://the-echoplex.net/flexyboxes/ 41 | // * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx 42 | // * http://css-tricks.com/using-flexbox/ 43 | // * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ 44 | // * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes 45 | 46 | //---------------------------------------------------------------------- 47 | 48 | // Flexbox Containers 49 | // 50 | // The 'flex' value causes an element to generate a block-level flex 51 | // container box. 52 | // 53 | // The 'inline-flex' value causes an element to generate a inline-level 54 | // flex container box. 55 | // 56 | // display: flex | inline-flex 57 | // 58 | // http://w3.org/tr/css3-flexbox/#flex-containers 59 | // 60 | // (Placeholder selectors for each type, for those who rather @extend) 61 | 62 | @mixin flexbox { 63 | display: -webkit-box; 64 | display: -webkit-flex; 65 | display: -moz-flex; 66 | display: -ms-flexbox; 67 | display: flex; 68 | } 69 | 70 | %flexbox { @include flexbox; } 71 | 72 | //---------------------------------- 73 | 74 | @mixin inline-flex { 75 | display: -webkit-inline-box; 76 | display: -webkit-inline-flex; 77 | display: -moz-inline-flex; 78 | display: -ms-inline-flexbox; 79 | display: inline-flex; 80 | } 81 | 82 | %inline-flex { @include inline-flex; } 83 | 84 | //---------------------------------------------------------------------- 85 | 86 | // Flexbox Direction 87 | // 88 | // The 'flex-direction' property specifies how flex items are placed in 89 | // the flex container, by setting the direction of the flex container's 90 | // main axis. This determines the direction that flex items are laid out in. 91 | // 92 | // Values: row | row-reverse | column | column-reverse 93 | // Default: row 94 | // 95 | // http://w3.org/tr/css3-flexbox/#flex-direction-property 96 | 97 | @mixin flex-direction($value: row) { 98 | @if $value == row-reverse { 99 | -webkit-box-direction: reverse; 100 | -webkit-box-orient: horizontal; 101 | } @else if $value == column { 102 | -webkit-box-direction: normal; 103 | -webkit-box-orient: vertical; 104 | } @else if $value == column-reverse { 105 | -webkit-box-direction: reverse; 106 | -webkit-box-orient: vertical; 107 | } @else { 108 | -webkit-box-direction: normal; 109 | -webkit-box-orient: horizontal; 110 | } 111 | -webkit-flex-direction: $value; 112 | -moz-flex-direction: $value; 113 | -ms-flex-direction: $value; 114 | flex-direction: $value; 115 | } 116 | // Shorter version: 117 | @mixin flex-dir($args...) { @include flex-direction($args...); } 118 | 119 | //---------------------------------------------------------------------- 120 | 121 | // Flexbox Wrap 122 | // 123 | // The 'flex-wrap' property controls whether the flex container is single-line 124 | // or multi-line, and the direction of the cross-axis, which determines 125 | // the direction new lines are stacked in. 126 | // 127 | // Values: nowrap | wrap | wrap-reverse 128 | // Default: nowrap 129 | // 130 | // http://w3.org/tr/css3-flexbox/#flex-wrap-property 131 | 132 | @mixin flex-wrap($value: nowrap) { 133 | // No Webkit Box fallback. 134 | -webkit-flex-wrap: $value; 135 | -moz-flex-wrap: $value; 136 | @if $value == nowrap { 137 | -ms-flex-wrap: none; 138 | } @else { 139 | -ms-flex-wrap: $value; 140 | } 141 | flex-wrap: $value; 142 | } 143 | 144 | //---------------------------------------------------------------------- 145 | 146 | // Flexbox Flow (shorthand) 147 | // 148 | // The 'flex-flow' property is a shorthand for setting the 'flex-direction' 149 | // and 'flex-wrap' properties, which together define the flex container's 150 | // main and cross axes. 151 | // 152 | // Values: | 153 | // Default: row nowrap 154 | // 155 | // http://w3.org/tr/css3-flexbox/#flex-flow-property 156 | 157 | @mixin flex-flow($values: (row nowrap)) { 158 | // No Webkit Box fallback. 159 | -webkit-flex-flow: $values; 160 | -moz-flex-flow: $values; 161 | -ms-flex-flow: $values; 162 | flex-flow: $values; 163 | } 164 | 165 | //---------------------------------------------------------------------- 166 | 167 | // Flexbox Order 168 | // 169 | // The 'order' property controls the order in which flex items appear within 170 | // their flex container, by assigning them to ordinal groups. 171 | // 172 | // Default: 0 173 | // 174 | // http://w3.org/tr/css3-flexbox/#order-property 175 | 176 | @mixin order($int: 0) { 177 | -webkit-box-ordinal-group: $int + 1; 178 | -webkit-order: $int; 179 | -moz-order: $int; 180 | -ms-flex-order: $int; 181 | order: $int; 182 | } 183 | 184 | //---------------------------------------------------------------------- 185 | 186 | // Flexbox Grow 187 | // 188 | // The 'flex-grow' property sets the flex grow factor. Negative numbers 189 | // are invalid. 190 | // 191 | // Default: 0 192 | // 193 | // http://w3.org/tr/css3-flexbox/#flex-grow-property 194 | 195 | @mixin flex-grow($int: 0) { 196 | -webkit-box-flex: $int; 197 | -webkit-flex-grow: $int; 198 | -moz-flex-grow: $int; 199 | -ms-flex-positive: $int; 200 | flex-grow: $int; 201 | } 202 | 203 | //---------------------------------------------------------------------- 204 | 205 | // Flexbox Shrink 206 | // 207 | // The 'flex-shrink' property sets the flex shrink factor. Negative numbers 208 | // are invalid. 209 | // 210 | // Default: 1 211 | // 212 | // http://w3.org/tr/css3-flexbox/#flex-shrink-property 213 | 214 | @mixin flex-shrink($int: 1) { 215 | -webkit-flex-shrink: $int; 216 | -moz-flex-shrink: $int; 217 | -ms-flex-negative: $int; 218 | flex-shrink: $int; 219 | } 220 | 221 | //---------------------------------------------------------------------- 222 | 223 | // Flexbox Basis 224 | // 225 | // The 'flex-basis' property sets the flex basis. Negative lengths are invalid. 226 | // 227 | // Values: Like "width" 228 | // Default: auto 229 | // 230 | // http://www.w3.org/TR/css3-flexbox/#flex-basis-property 231 | 232 | @mixin flex-basis($value: auto) { 233 | -webkit-flex-basis: $value; 234 | -moz-flex-basis: $value; 235 | -ms-flex-preferred-size: $value; 236 | flex-basis: $value; 237 | } 238 | 239 | //---------------------------------------------------------------------- 240 | 241 | // Flexbox "Flex" (shorthand) 242 | // 243 | // The 'flex' property specifies the components of a flexible length: the 244 | // flex grow factor and flex shrink factor, and the flex basis. When an 245 | // element is a flex item, 'flex' is consulted instead of the main size 246 | // property to determine the main size of the element. If an element is 247 | // not a flex item, 'flex' has no effect. 248 | // 249 | // Values: none | || 250 | // Default: See individual properties (1 1 0). 251 | // 252 | // http://w3.org/tr/css3-flexbox/#flex-property 253 | 254 | @mixin flex($fg: 1, $fs: null, $fb: null) { 255 | 256 | // Set a variable to be used by box-flex properties 257 | $fg-boxflex: $fg; 258 | 259 | // Box-Flex only supports a flex-grow value so let's grab the 260 | // first item in the list and just return that. 261 | @if type-of($fg) == 'list' { 262 | $fg-boxflex: nth($fg, 1); 263 | } 264 | 265 | -webkit-box-flex: $fg-boxflex; 266 | -webkit-flex: $fg $fs $fb; 267 | -moz-box-flex: $fg-boxflex; 268 | -moz-flex: $fg $fs $fb; 269 | -ms-flex: $fg $fs $fb; 270 | flex: $fg $fs $fb; 271 | } 272 | 273 | //---------------------------------------------------------------------- 274 | 275 | // Flexbox Justify Content 276 | // 277 | // The 'justify-content' property aligns flex items along the main axis 278 | // of the current line of the flex container. This is done after any flexible 279 | // lengths and any auto margins have been resolved. Typically it helps distribute 280 | // extra free space leftover when either all the flex items on a line are 281 | // inflexible, or are flexible but have reached their maximum size. It also 282 | // exerts some control over the alignment of items when they overflow the line. 283 | // 284 | // Note: 'space-*' values not supported in older syntaxes. 285 | // 286 | // Values: flex-start | flex-end | center | space-between | space-around 287 | // Default: flex-start 288 | // 289 | // http://w3.org/tr/css3-flexbox/#justify-content-property 290 | 291 | @mixin justify-content($value: flex-start) { 292 | @if $value == flex-start { 293 | -webkit-box-pack: start; 294 | -ms-flex-pack: start; 295 | } @else if $value == flex-end { 296 | -webkit-box-pack: end; 297 | -ms-flex-pack: end; 298 | } @else if $value == space-between { 299 | -webkit-box-pack: justify; 300 | -ms-flex-pack: justify; 301 | } @else if $value == space-around { 302 | -ms-flex-pack: distribute; 303 | } @else { 304 | -webkit-box-pack: $value; 305 | -ms-flex-pack: $value; 306 | } 307 | -webkit-justify-content: $value; 308 | -moz-justify-content: $value; 309 | justify-content: $value; 310 | } 311 | // Shorter version: 312 | @mixin flex-just($args...) { @include justify-content($args...); } 313 | 314 | //---------------------------------------------------------------------- 315 | 316 | // Flexbox Align Items 317 | // 318 | // Flex items can be aligned in the cross axis of the current line of the 319 | // flex container, similar to 'justify-content' but in the perpendicular 320 | // direction. 'align-items' sets the default alignment for all of the flex 321 | // container's items, including anonymous flex items. 'align-self' allows 322 | // this default alignment to be overridden for individual flex items. (For 323 | // anonymous flex items, 'align-self' always matches the value of 'align-items' 324 | // on their associated flex container.) 325 | // 326 | // Values: flex-start | flex-end | center | baseline | stretch 327 | // Default: stretch 328 | // 329 | // http://w3.org/tr/css3-flexbox/#align-items-property 330 | 331 | @mixin align-items($value: stretch) { 332 | @if $value == flex-start { 333 | -webkit-box-align: start; 334 | -ms-flex-align: start; 335 | } @else if $value == flex-end { 336 | -webkit-box-align: end; 337 | -ms-flex-align: end; 338 | } @else { 339 | -webkit-box-align: $value; 340 | -ms-flex-align: $value; 341 | } 342 | -webkit-align-items: $value; 343 | -moz-align-items: $value; 344 | align-items: $value; 345 | } 346 | 347 | //---------------------------------- 348 | 349 | // Flexbox Align Self 350 | // 351 | // Values: auto | flex-start | flex-end | center | baseline | stretch 352 | // Default: auto 353 | 354 | @mixin align-self($value: auto) { 355 | // No Webkit Box Fallback. 356 | -webkit-align-self: $value; 357 | -moz-align-self: $value; 358 | @if $value == flex-start { 359 | -ms-flex-item-align: start; 360 | } @else if $value == flex-end { 361 | -ms-flex-item-align: end; 362 | } @else { 363 | -ms-flex-item-align: $value; 364 | } 365 | align-self: $value; 366 | } 367 | 368 | //---------------------------------------------------------------------- 369 | 370 | // Flexbox Align Content 371 | // 372 | // The 'align-content' property aligns a flex container's lines within the 373 | // flex container when there is extra space in the cross-axis, similar to 374 | // how 'justify-content' aligns individual items within the main-axis. Note, 375 | // this property has no effect when the flexbox has only a single line. 376 | // 377 | // Values: flex-start | flex-end | center | space-between | space-around | stretch 378 | // Default: stretch 379 | // 380 | // http://w3.org/tr/css3-flexbox/#align-content-property 381 | 382 | @mixin align-content($value: stretch) { 383 | // No Webkit Box Fallback. 384 | -webkit-align-content: $value; 385 | -moz-align-content: $value; 386 | @if $value == flex-start { 387 | -ms-flex-line-pack: start; 388 | } @else if $value == flex-end { 389 | -ms-flex-line-pack: end; 390 | } @else { 391 | -ms-flex-line-pack: $value; 392 | } 393 | align-content: $value; 394 | } 395 | -------------------------------------------------------------------------------- /images/AGPLv3_Logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /docs/kick-ascii/cast/dev-env-install.cast: -------------------------------------------------------------------------------- 1 | {"version": 2, "width": 204, "height": 51, "timestamp": 1563246413, "env": {"SHELL": "/bin/zsh", "TERM": "xterm-256color"}} 2 | [0.413948, "o", "\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp\u0007\u001b]1337;ShellIntegrationVersion=8;shell=zsh\u0007"] 3 | [0.418048, "o", "\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m \r \r"] 4 | [0.418275, "o", "\u001b]2;computer@computers-MacBook-Air: /tmp\u0007\u001b]1;/tmp\u0007"] 5 | [0.492181, "o", "\u001b]133;D;0\u0007\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp\u0007"] 6 | [0.502912, "o", "\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b]133;A\u0007\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp\u001b[00m\u001b[31m|\u001b[00m\r\n\r\u001b[36m⇒\u001b[00m \u001b]133;B\u0007\u001b[K\u001b[?1h\u001b=\u001b[?2004h"] 7 | [0.665361, "o", "\u001b[?1l\u001b>"] 8 | [0.66562, "o", "\u001b[?2004l\r\r\n"] 9 | [0.667255, "o", "\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m \r \r"] 10 | [0.667696, "o", "\u001b]2;computer@computers-MacBook-Air: /tmp\u0007\u001b]1;/tmp\u0007"] 11 | [0.732557, "o", "\u001b]133;C;\u0007\u001b]133;D;0\u0007\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp\u0007"] 12 | [0.732795, "o", "\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp\u001b[00m\u001b[31m|\u001b[00m\r\n\r\u001b[36m⇒\u001b[00m \u001b[K"] 13 | [0.732971, "o", "\u001b[?1h\u001b=\u001b[?2004h"] 14 | [1.432087, "o", "\u001b[H\u001b[2J\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp\u001b[00m\u001b[31m|\u001b[00m\r\n\r\u001b[36m⇒\u001b[00m \u001b[K"] 15 | [3.474042, "o", "g"] 16 | [3.851325, "o", "\b \b"] 17 | [4.024096, "o", "\u001b[7mgit clone https://github.com/ohmyform/ohmyform.git\u001b[27m"] 18 | [5.365448, "o", "\u001b[50D\u001b[27mg\u001b[27mi\u001b[27mt\u001b[27m \u001b[27mc\u001b[27ml\u001b[27mo\u001b[27mn\u001b[27me\u001b[27m \u001b[27mh\u001b[27mt\u001b[27mt\u001b[27mp\u001b[27ms\u001b[27m:\u001b[27m/\u001b[27m/\u001b[27mg\u001b[27mi\u001b[27mt\u001b[27mh\u001b[27mu\u001b[27mb\u001b[27m.\u001b[27mc\u001b[27mo\u001b[27mm\u001b[27m/\u001b[27mo\u001b[27mh\u001b[27mm\u001b[27my\u001b[27mf\u001b[27mo\u001b[27mr\u001b[27mm\u001b[27m/\u001b[27mo\u001b[27mh\u001b[27mm\u001b[27my\u001b[27mf\u001b[27mo\u001b[27mr\u001b[27mm\u001b[27m.\u001b[27mg\u001b[27mi\u001b[27mt\u001b[?1l\u001b>\u001b[?2004l"] 19 | [5.365677, "o", "\r\r\n"] 20 | [5.367208, "o", "\u001b]2;git clone https://github.com/ohmyform/ohmyform.git\u0007\u001b]1;git\u0007\u001b]133;C;\u0007"] 21 | [5.391082, "o", "Cloning into 'ohmyform'...\r\n"] 22 | [6.084334, "o", "remote: Enumerating objects: 290, done.\u001b[K\r\nremote: Counting objects: 0% (1/290) \u001b[K\rremote: Counting objects: 1% (3/290) \u001b[K\rremote: Counting objects: 2% (6/290) \u001b[K\rremote: Counting objects: 3% (9/290) \u001b[K\rremote: Counting objects: 4% (12/290) \u001b[K\rremote: Counting objects: 5% (15/290) \u001b[K\rremote: Counting objects: 6% (18/290) \u001b[K\rremote: Counting objects: 7% (21/290) \u001b[K\rremote: Counting objects: 8% (24/290) \u001b[K\r"] 23 | [6.086154, "o", "remote: Counting objects: 9% (27/290) \u001b[K\rremote: Counting objects: 10% (29/290) \u001b[K\rremote: Counting objects: 11% (32/290) \u001b[K\rremote: Counting objects: 12% (35/290) \u001b[K\rremote: Counting objects: 13% (38/290) \u001b[K\rremote: Counting objects: 14% (41/290) \u001b[K\rremote: Counting objects: 15% (44/290) \u001b[K\rremote: Counting objects: 16% (47/290) \u001b[K\rremote: Counting objects: 17% (50/290) \u001b[K\rremote: Counting objects: 18% (53/290) \u001b[K\rremote: Counting objects: 19% (56/290) \rremote: Counting objects: 20% (58/290) \u001b[K\rremote: Counting objects: 21% (61/290) \u001b[K\rremote: Counting objects: 22% (64/290) \u001b[K\rremote: Counting objects: 23% (67/290) \u001b[K\rremote: Counting objects: 24% (70/290) \u001b[K\rremote: Counting objects: 25% (73/290) \u001b[K\rremote: Counting objects: 26% (76/290) \u001b[K\rremote: Counting objects: 27% (79/290) \u001b[K\rremote: Counting objects: 28% (82/290) \u001b[K\rremote: Counting objects: 29% (85/290) \u001b[K\rremote: Counting objects: 30% (87/290) \u001b[K\rremote: Countin"] 24 | [6.08633, "o", "g objects: 31% (90/290) \u001b[K\r"] 25 | [6.086699, "o", "remote: Counting objects: 32% (93/290) \u001b[K\rremote: Counting objects: 33% (96/290) \u001b[K\r"] 26 | [6.087112, "o", "remote: Counting objects: 34% (99/290) \u001b[K\rremote: Counting objects: 35% (102/290) \u001b[K\rremote: Counting objects: 36% (105/290) \u001b[K\rremote: Counting objects: 37% (108/290) \u001b[K\rremote: Counting objects: 38% (111/290) \u001b[K\rremote: Counting objects: 39% (114/290) \u001b[K\rremote: Counting objects: 40% (116/290) \u001b[K\rremote: Counting objects: 41% (119/290) \u001b[K\rremote: Counting objects: 42% (122/290) \u001b[K\rremote: Counting objects: 43% (125/290) \u001b[K\rremote: Counting objects: 44% (128/290) \u001b[K\rremote: Counting objects: 45% (131/290) \u001b[K\rremote: Counting objects: 46% (134/290) \u001b[K\rremote: Counting objects: 47% (137/290) \u001b[K\rremote: Counting objects: 48% (140/290) \u001b[K\rremote: Counting objects: 49% (143/290) \u001b[K\rremote: Counting objects: 50% (145/290) \u001b[K\rremote: Counting objects: 51% (148/290) \u001b[K\rremote: Counting objects: 52% (151/290) \u001b[K\rremote: Counting objects: 53% (154/290) \u001b[K\rremote: Counting objects: 54% (157/290) \u001b[K\rremote: Counting objects: 55% (160/29"] 27 | [6.087673, "o", "0) \u001b[K\rremote: Counting objects: 56% (163/290) \u001b[K\rremote: Counting objects: 57% (166/290) \u001b[K\rremote: Counting objects: 58% (169/290) \u001b[K\rremote: Counting objects: 59% (172/290) \u001b[K\rremote: Counting objects: 60% (174/290) \u001b[K\rremote: Counting objects: 61% (177/290) \u001b[K\rremote: Counting objects: 62% (180/290) \u001b[K\rremote: Counting objects: 63% (183/290) \u001b[K\rremote: Counting objects: 64% (186/290) \u001b[K\rremote: Counting objects: 65% (189/290) \u001b[K\rremote: Counting objects: 66% (192/290) \u001b[K\rremote: Counting objects: 67% (195/290) \u001b[K\r"] 28 | [6.088158, "o", "remote: Counting objects: 68% (198/290) \u001b[K\rremote: Counting objects: 69% (201/290) \u001b[K\rremote: Counting objects: 70% (203/290) \u001b[K\rremote: Counting objects: 71% (206/290) \u001b[K\rremote: Counting objects: 72% (209/290) \u001b[K\rremote: Counting objects: 73% (212/290) \u001b[K\rremote: Counting objects: 74% (215/290) \u001b[K\rremote: Counting objects: 75% (218/290) \u001b[K\rremote: Counting objects: 76% (221/290) \u001b[K\rremote: Counting objects: 77% (224/290) \u001b[K\rremote: Counting objects: 78% (227/290) \u001b[K\rremote: Counting objects: 79% (230/290) \u001b[K\rremote: Counting objects: 80% (232/290) \u001b[K\rremote: Counting objects: 81% (235/290) \u001b[K\rremote: Counting objects: 82% (238/290) \u001b[K\rremote: Counting objects: 83% (241/290) \u001b[K\rremote: Counting objects: 84% (244/290) \u001b[K\rremote: Counting objects: 85% (247/290) \u001b[K\rremote: Counting objects: 86% (250/290) \u001b[K\rremote: Counting objects: 87% (253/290) \u001b[K\rremote: Counting objects: 88% (256/290) \u001b[K\rremote: Counting objects: 89% (259/2"] 29 | [6.088396, "o", "90) \u001b[K\rremote: Counting objects: 90% (261/290) \u001b[K\rremote: Counting objects: 91% (264/290) \u001b[K\r"] 30 | [6.119052, "o", "remote: Counting objects: 92% (267/290) \u001b[K\rremote: Counting objects: 93% (270/290) \u001b[K\rremote: Counting objects: 94% (273/290) \u001b[K\rremote: Counting objects: 95% (276/290) \u001b[K\rremote: Counting objects: 96% (279/290) \u001b[K\r"] 31 | [6.119909, "o", "remote: Counting objects: 97% (282/290) \u001b[K\rremote: Counting objects: 98% (285/290) \u001b[K\rremote: Counting objects: 99% (288/290) \u001b[K\rremote: Counting objects: 100% (290/290) \u001b[K\rremote: Counting objects: 100% (290/290), done.\u001b[K\r\nremote: Compressing objects: 0% (1/199) \u001b[K\rremote: Compressing objects: 1% (2/199) \u001b[K\rremote: Compressing objects: 2% (4/199) \u001b[K\rremote: Compressing objects: 3% (6/199) \u001b[K\rremote: Compressing objects: 4% (8/199) \u001b[K\rremote: Compressing objects: 5% (10/199) \u001b[K\rremote: Compressing objects: 6% (12/199) \u001b[K\rremote: Compressing objects: 7% (14/199) \u001b[K\rremote: Compressing objects: 8% (16/199) \u001b[K\r"] 32 | [6.121343, "o", "remote: Compressing objects: 9% (18/199) \u001b[K\rremote: Compressing objects: 10% (20/199) \u001b[K\rremote: Compressing objects: 11% (22/199) \u001b[K\rremote: Compressing objects: 12% (24/199) \u001b[K\rremote: Compressing objects: 13% (26/199) \u001b[K\rremote: Compressing objects: 14% (28/199) \u001b[K\rremote: Compressing objects: 15% (30/199) \u001b[K\rremote: Compressing objects: 16% (32/199) \u001b[K\rremote: Compressing objects: 17% (34/199) \u001b[K\rremote: Compressing objects: 18% (36/199) \u001b[K\rremote: Compressing objects: 19% (38/199) \u001b[K\rremote: Compressing objects: 20% (40/199) \u001b[K\r"] 33 | [6.126958, "o", "remote: Compressing objects: 21% (42/199) \u001b[K\r"] 34 | [6.127797, "o", "remote: Compressing objects: 22% (44/199) \u001b[K\rremote: Compressing objects: 23% (46/199) \u001b[K\rremote: Compressing objects: 24% (48/199) \u001b[K\rremote: Compressing objects: 25% (50/199) \u001b[K\rremote: Compressing objects: 26% (52/199) \u001b[K\rremote: Compressing objects: 27% (54/199) \u001b[K\rremote: Compressing objects: 28% (56/199) \u001b[K\rremote: Compressing objects: 29% (58/199) \u001b[K\rremote: Compressing objects: 30% (60/199) \u001b[K\rremote: Compressing objects: 31% (62/199) \u001b[K\rremote: Compressing objects: 32% (64/199) \u001b[K\rremote: Compressing objects: 33% (66/199) \u001b[K\rremote: Compressing objects: 34% (68/199) \u001b[K\rremote: Compressing objects: 35% (70/199) \u001b[K\r"] 35 | [6.128941, "o", "remote: Compressing objects: 36% (72/199) \u001b[K\rremote: Compressing objects: 37% (74/199) \u001b[K\rremote: Compressing objects: 38% (76/199) \u001b[K\rremote: Compressing objects: 39% (78/199) \u001b[K\rremote: Compressing objects: 40% (80/199) \u001b[K\rremote: Compressing objects: 41% (82/199) \u001b[K\rremote: Compressing objects: 42% (84/199) \u001b[K\rremote: Compressing objects: 43% (86/199) \u001b[K\rremote: Compressing objects: 44% (88/199) \u001b[K\rremote: Compressing objects: 45% (90/199) \u001b[K\rremote: Compressing objects: 46% (92/199) \u001b[K\rremote: Compressing objects: 47% (94/199) \u001b[K\rremote: Compressing objects: 48% (96/199) \u001b[K\rremote: Compressing objects: 49% (98/199) \u001b[K\rremote: Compressing objects: 50% (100/199) \u001b[K\rremote: Compressing objects: 51% (102/199) \u001b[K\r"] 36 | [6.174346, "o", "remote: Compressing objects: 52% (104/199) \u001b[K\rremote: Compressing objects: 53% (106/199) \u001b[K\rremote: Compressing objects: 54% (108/199) \u001b[K\rremote: Compressing objects: 55% (110/199) \u001b[K\rremote: Compressing objects: 56% (112/199) \u001b[K\rremote: Compressing objects: 57% (114/199) \u001b[K\rremote: Compressing objects: 58% (116/199) \u001b[K\rremote: Compressing objects: 59% (118/199) \u001b[K\rremote: Compressing objects: 60% (120/199) \u001b[K\rremote: Compressing objects: 61% (122/199) \u001b[K\rremote: Compressing objects: 62% (124/199) \u001b[K\rremote: Compressing objects: 63% (126/199) \u001b[K\rremote: Compressing objects: 64% (128/199) \u001b[K\rremote: Compressing objects: 65% (130/199) \u001b[K\rremote: Compressing objects: 66% (132/199) \u001b[K\rremote: Compressing objects: 67% (134/199) \u001b[K\r"] 37 | [6.1746, "o", "remote: Compressing objects: 68% (136/199) \u001b[K\rremote: Compressing objects: 69% (138/199) \u001b[K\rremote: Compressing objects: 70% (140/199) \u001b[K\rremote: Compressing objects: 71% (142/199) \u001b[K\rremote: Compressing objects: 72% (144/199) \u001b[K\rremote: Compressing objects: 73% (146/199) \u001b[K\rremote: Compressing objects: 74% (148/199) \u001b[K\rremote: Compressing objects: 75% (150/199) \u001b[K\rremote: Compressing objects: 76% (152/199) \u001b[K\rremote: Compressing objects: 77% (154/199) \u001b[K\rremote: Compressing objects: 78% (156/199) \u001b[K\rremote: Compressing objects: 79% (158/199) \u001b[K\rremote: Compressing objects: 80% (160/199) \u001b[K\rremote: Compressing objects: 81% (162/199) \u001b[K\rremote: Compressing objects: 82% (164/199) \u001b[K\rremote: Compressing objects: 83% (166/199) \u001b[K\rremote: Compressing objects: 84% (168/199) \u001b[K\rremote: Compressing objects: 85% (170/199) \u001b[K\rremote: Compressing objects: 86% (172/199) \u001b[K\rremote: Compressing objects: 87% (174/199) \u001b[K\rremote: Compressing obje"] 38 | [6.176261, "o", "cts: 88% (176/199) \u001b[K\rremote: Compressing objects: 89% (178/199) \u001b[K\rremote: Compressing objects: 90% (180/199) \u001b[K\rremote: Compressing objects: 91% (182/199) \u001b[K\rremote: Compressing objects: 92% (184/199) \u001b[K\r"] 39 | [6.179071, "o", "remote: Compressing objects: 93% (186/199) \u001b[K\rremote: Compressing objects: 94% (188/199) \u001b[K\rremote: Compressing objects: 95% (190/199) \u001b[K\rremote: Compressing objects: 96% (192/199) \u001b[K\rremote: Compressing objects: 97% (194/199) \u001b[K\rremote: Compressing objects: 98% (196/199) \u001b[K\rremote: Compressing objects: 99% (198/199) \u001b[K\rremote: Compressing objects: 100% (199/199) \u001b[K\rremote: Compressing objects: 100% (199/199), done.\u001b[K\r\n"] 40 | [6.30508, "o", "Receiving objects: 0% (1/17355) \r"] 41 | [6.31672, "o", "Receiving objects: 1% (174/17355) \r"] 42 | [6.323835, "o", "Receiving objects: 2% (348/17355) \r"] 43 | [6.401908, "o", "Receiving objects: 3% (521/17355) \r"] 44 | [6.442026, "o", "Receiving objects: 4% (695/17355) \r"] 45 | [6.582196, "o", "Receiving objects: 5% (868/17355) \r"] 46 | [6.604451, "o", "Receiving objects: 6% (1042/17355) \r"] 47 | [6.809211, "o", "Receiving objects: 7% (1215/17355), 292.00 KiB | 567.00 KiB/s \r"] 48 | [6.841136, "o", "Receiving objects: 8% (1389/17355), 292.00 KiB | 567.00 KiB/s \r"] 49 | [6.857474, "o", "Receiving objects: 9% (1562/17355), 292.00 KiB | 567.00 KiB/s \r"] 50 | [6.988493, "o", "Receiving objects: 10% (1736/17355), 292.00 KiB | 567.00 KiB/s \r"] 51 | [7.310983, "o", "Receiving objects: 10% (1843/17355), 772.00 KiB | 760.00 KiB/s \r"] 52 | [7.783705, "o", "Receiving objects: 11% (1910/17355), 772.00 KiB | 760.00 KiB/s \r"] 53 | [7.919974, "o", "Receiving objects: 12% (2083/17355), 1.25 MiB | 838.00 KiB/s \r"] 54 | [8.024083, "o", "Receiving objects: 13% (2257/17355), 1.25 MiB | 838.00 KiB/s \r"] 55 | [8.32091, "o", "Receiving objects: 13% (2307/17355), 1.76 MiB | 891.00 KiB/s \r"] 56 | [9.344942, "o", "Receiving objects: 13% (2307/17355), 3.59 MiB | 1.18 MiB/s \r"] 57 | [10.40903, "o", "Receiving objects: 13% (2307/17355), 5.98 MiB | 1.46 MiB/s \r"] 58 | [11.00253, "o", "Receiving objects: 14% (2430/17355), 7.61 MiB | 1.65 MiB/s \r"] 59 | [11.202502, "o", "Receiving objects: 15% (2604/17355), 7.61 MiB | 1.65 MiB/s \r"] 60 | [11.224152, "o", "Receiving objects: 16% (2777/17355), 7.61 MiB | 1.65 MiB/s \r"] 61 | [11.324556, "o", "Receiving objects: 16% (2875/17355), 7.61 MiB | 1.65 MiB/s \r"] 62 | [11.533321, "o", "Receiving objects: 17% (2951/17355), 9.17 MiB | 1.93 MiB/s \r"] 63 | [11.740449, "o", "Receiving objects: 18% (3124/17355), 9.17 MiB | 1.93 MiB/s \r"] 64 | [11.78323, "o", "Receiving objects: 19% (3298/17355), 9.17 MiB | 1.93 MiB/s \r"] 65 | [11.795376, "o", "Receiving objects: 20% (3471/17355), 9.17 MiB | 1.93 MiB/s \r"] 66 | [11.905104, "o", "Receiving objects: 21% (3645/17355), 9.17 MiB | 1.93 MiB/s \r"] 67 | [11.921143, "o", "Receiving objects: 22% (3819/17355), 9.17 MiB | 1.93 MiB/s \r"] 68 | [11.934478, "o", "Receiving objects: 23% (3992/17355), 10.55 MiB | 2.13 MiB/s \r"] 69 | [11.967822, "o", "Receiving objects: 24% (4166/17355), 10.55 MiB | 2.13 MiB/s \r"] 70 | [12.094578, "o", "Receiving objects: 25% (4339/17355), 10.55 MiB | 2.13 MiB/s \r"] 71 | [12.117051, "o", "Receiving objects: 26% (4513/17355), 10.55 MiB | 2.13 MiB/s \r"] 72 | [12.152885, "o", "Receiving objects: 27% (4686/17355), 10.55 MiB | 2.13 MiB/s \r"] 73 | [12.295755, "o", "Receiving objects: 28% (4860/17355), 10.55 MiB | 2.13 MiB/s \r"] 74 | [12.300759, "o", "Receiving objects: 28% (4865/17355), 10.55 MiB | 2.13 MiB/s \r"] 75 | [12.326612, "o", "Receiving objects: 29% (5033/17355), 10.55 MiB | 2.13 MiB/s \r"] 76 | [12.338126, "o", "Receiving objects: 30% (5207/17355), 10.55 MiB | 2.13 MiB/s \r"] 77 | [12.370127, "o", "Receiving objects: 31% (5381/17355), 10.55 MiB | 2.13 MiB/s \r"] 78 | [12.395727, "o", "Receiving objects: 32% (5554/17355), 10.55 MiB | 2.13 MiB/s \r"] 79 | [12.427678, "o", "Receiving objects: 33% (5728/17355), 12.03 MiB | 2.34 MiB/s \r"] 80 | [12.439976, "o", "Receiving objects: 34% (5901/17355), 12.03 MiB | 2.34 MiB/s \r"] 81 | [12.444073, "o", "Receiving objects: 35% (6075/17355), 12.03 MiB | 2.34 MiB/s \r"] 82 | [12.451352, "o", "Receiving objects: 36% (6248/17355), 12.03 MiB | 2.34 MiB/s \r"] 83 | [12.453202, "o", "Receiving objects: 37% (6422/17355), 12.03 MiB | 2.34 MiB/s \r"] 84 | [12.453959, "o", "Receiving objects: 38% (6595/17355), 12.03 MiB | 2.34 MiB/s \r"] 85 | [12.46713, "o", "Receiving objects: 39% (6769/17355), 12.03 MiB | 2.34 MiB/s \r"] 86 | [12.472489, "o", "Receiving objects: 40% (6942/17355), 12.03 MiB | 2.34 MiB/s \r"] 87 | [12.473156, "o", "Receiving objects: 41% (7116/17355), 12.03 MiB | 2.34 MiB/s \r"] 88 | [12.483404, "o", "Receiving objects: 42% (7290/17355), 12.03 MiB | 2.34 MiB/s \r"] 89 | [12.488444, "o", "Receiving objects: 43% (7463/17355), 12.03 MiB | 2.34 MiB/s \r"] 90 | [12.497269, "o", "Receiving objects: 44% (7637/17355), 12.03 MiB | 2.34 MiB/s \r"] 91 | [12.504584, "o", "Receiving objects: 45% (7810/17355), 12.03 MiB | 2.34 MiB/s \r"] 92 | [12.530415, "o", "Receiving objects: 46% (7984/17355), 12.03 MiB | 2.34 MiB/s \r"] 93 | [12.535947, "o", "Receiving objects: 47% (8157/17355), 12.03 MiB | 2.34 MiB/s \r"] 94 | [12.543535, "o", "Receiving objects: 48% (8331/17355), 12.03 MiB | 2.34 MiB/s \r"] 95 | [12.626909, "o", "Receiving objects: 49% (8504/17355), 12.03 MiB | 2.34 MiB/s \r"] 96 | [12.629312, "o", "Receiving objects: 50% (8678/17355), 12.03 MiB | 2.34 MiB/s \r"] 97 | [12.644615, "o", "Receiving objects: 51% (8852/17355), 12.03 MiB | 2.34 MiB/s \r"] 98 | [12.66949, "o", "Receiving objects: 52% (9025/17355), 12.03 MiB | 2.34 MiB/s \r"] 99 | [12.683638, "o", "Receiving objects: 53% (9199/17355), 12.03 MiB | 2.34 MiB/s \r"] 100 | [12.69411, "o", "Receiving objects: 54% (9372/17355), 12.03 MiB | 2.34 MiB/s \r"] 101 | [12.711286, "o", "Receiving objects: 55% (9546/17355), 12.03 MiB | 2.34 MiB/s \r"] 102 | [12.727876, "o", "Receiving objects: 56% (9719/17355), 12.03 MiB | 2.34 MiB/s \r"] 103 | [12.749417, "o", "Receiving objects: 57% (9893/17355), 12.03 MiB | 2.34 MiB/s \r"] 104 | [13.369369, "o", "Receiving objects: 57% (10007/17355), 13.43 MiB | 2.53 MiB/s \r"] 105 | [14.525215, "o", "Receiving objects: 57% (10015/17355), 16.57 MiB | 2.53 MiB/s \r"] 106 | [14.547059, "o", "Receiving objects: 58% (10066/17355), 16.57 MiB | 2.53 MiB/s \r"] 107 | [14.658989, "o", "Receiving objects: 59% (10240/17355), 16.57 MiB | 2.53 MiB/s \r"] 108 | [14.65999, "o", "Receiving objects: 60% (10413/17355), 16.57 MiB | 2.53 MiB/s \r"] 109 | [14.661991, "o", "Receiving objects: 61% (10587/17355), 16.57 MiB | 2.53 MiB/s \r"] 110 | [14.667096, "o", "Receiving objects: 62% (10761/17355), 16.57 MiB | 2.53 MiB/s \r"] 111 | [14.778539, "o", "Receiving objects: 63% (10934/17355), 16.57 MiB | 2.53 MiB/s \r"] 112 | [14.77937, "o", "Receiving objects: 64% (11108/17355), 16.57 MiB | 2.53 MiB/s \r"] 113 | [14.780497, "o", "Receiving objects: 65% (11281/17355), 16.57 MiB | 2.53 MiB/s \r"] 114 | [14.782547, "o", "Receiving objects: 66% (11455/17355), 16.57 MiB | 2.53 MiB/s \r"] 115 | [14.786528, "o", "Receiving objects: 67% (11628/17355), 16.57 MiB | 2.53 MiB/s \r"] 116 | [14.788321, "o", "Receiving objects: 68% (11802/17355), 16.57 MiB | 2.53 MiB/s \r"] 117 | [14.790869, "o", "Receiving objects: 69% (11975/17355), 16.57 MiB | 2.53 MiB/s \r"] 118 | [14.79499, "o", "Receiving objects: 70% (12149/17355), 16.57 MiB | 2.53 MiB/s \r"] 119 | [14.796598, "o", "Receiving objects: 71% (12323/17355), 16.57 MiB | 2.53 MiB/s \r"] 120 | [14.797642, "o", "Receiving objects: 72% (12496/17355), 16.57 MiB | 2.53 MiB/s \r"] 121 | [14.798655, "o", "Receiving objects: 73% (12670/17355), 16.57 MiB | 2.53 MiB/s \r"] 122 | [14.799711, "o", "Receiving objects: 74% (12843/17355), 16.57 MiB | 2.53 MiB/s \r"] 123 | [14.801021, "o", "Receiving objects: 75% (13017/17355), 16.57 MiB | 2.53 MiB/s \r"] 124 | [14.801937, "o", "Receiving objects: 76% (13190/17355), 16.57 MiB | 2.53 MiB/s \r"] 125 | [14.802572, "o", "Receiving objects: 77% (13364/17355), 16.57 MiB | 2.53 MiB/s \r"] 126 | [14.803334, "o", "Receiving objects: 78% (13537/17355), 16.57 MiB | 2.53 MiB/s \r"] 127 | [14.804352, "o", "Receiving objects: 79% (13711/17355), 16.57 MiB | 2.53 MiB/s \r"] 128 | [14.805983, "o", "Receiving objects: 80% (13884/17355), 16.57 MiB | 2.53 MiB/s \r"] 129 | [14.807552, "o", "Receiving objects: 81% (14058/17355), 16.57 MiB | 2.53 MiB/s \r"] 130 | [14.808335, "o", "Receiving objects: 82% (14232/17355), 16.57 MiB | 2.53 MiB/s \r"] 131 | [14.815294, "o", "Receiving objects: 83% (14405/17355), 16.57 MiB | 2.53 MiB/s \r"] 132 | [14.831485, "o", "Receiving objects: 84% (14579/17355), 16.57 MiB | 2.53 MiB/s \r"] 133 | [14.846801, "o", "Receiving objects: 85% (14752/17355), 16.57 MiB | 2.53 MiB/s \r"] 134 | [14.860241, "o", "Receiving objects: 86% (14926/17355), 16.57 MiB | 2.53 MiB/s \r"] 135 | [14.862248, "o", "Receiving objects: 87% (15099/17355), 16.57 MiB | 2.53 MiB/s \r"] 136 | [14.875868, "o", "Receiving objects: 88% (15273/17355), 16.57 MiB | 2.53 MiB/s \r"] 137 | [14.989353, "o", "Receiving objects: 89% (15446/17355), 16.57 MiB | 2.53 MiB/s \r"] 138 | [15.252596, "o", "Receiving objects: 90% (15620/17355), 18.63 MiB | 2.74 MiB/s \r"] 139 | [15.301632, "o", "Receiving objects: 90% (15631/17355), 18.63 MiB | 2.74 MiB/s \r"] 140 | [15.627174, "o", "Receiving objects: 91% (15794/17355), 19.93 MiB | 2.66 MiB/s \r"] 141 | [15.797449, "o", "Receiving objects: 92% (15967/17355), 19.93 MiB | 2.66 MiB/s \r"] 142 | [15.85379, "o", "Receiving objects: 93% (16141/17355), 19.93 MiB | 2.66 MiB/s \r"] 143 | [15.857959, "o", "Receiving objects: 94% (16314/17355), 19.93 MiB | 2.66 MiB/s \r"] 144 | [15.863228, "o", "Receiving objects: 95% (16488/17355), 19.93 MiB | 2.66 MiB/s \r"] 145 | [15.872983, "o", "Receiving objects: 96% (16661/17355), 19.93 MiB | 2.66 MiB/s \r"] 146 | [15.957577, "o", "Receiving objects: 97% (16835/17355), 19.93 MiB | 2.66 MiB/s \r"] 147 | [16.268229, "o", "Receiving objects: 98% (17008/17355), 21.15 MiB | 2.59 MiB/s \r"] 148 | [16.348636, "o", "Receiving objects: 98% (17028/17355), 21.15 MiB | 2.59 MiB/s \r"] 149 | [16.374293, "o", "Receiving objects: 99% (17182/17355), 21.15 MiB | 2.59 MiB/s \r"] 150 | [16.468214, "o", "remote: Total 17355 (delta 106), reused 191 (delta 74), pack-reused 17065\u001b[K\r\n"] 151 | [16.471217, "o", "Receiving objects: 100% (17355/17355), 21.15 MiB | 2.59 MiB/s \r"] 152 | [16.471402, "o", "Receiving objects: 100% (17355/17355), 22.14 MiB | 2.18 MiB/s, done.\r\n"] 153 | [16.47475, "o", "Resolving deltas: 0% (0/11774) \r"] 154 | [16.476209, "o", "Resolving deltas: 1% (118/11774) \r"] 155 | [16.477186, "o", "Resolving deltas: 2% (241/11774) \r"] 156 | [16.478452, "o", "Resolving deltas: 3% (441/11774) \r"] 157 | [16.478971, "o", "Resolving deltas: 4% (486/11774) \r"] 158 | [16.480239, "o", "Resolving deltas: 5% (611/11774) \r"] 159 | [16.481066, "o", "Resolving deltas: 6% (718/11774) \r"] 160 | [16.482217, "o", "Resolving deltas: 7% (838/11774) \r"] 161 | [16.483095, "o", "Resolving deltas: 8% (948/11774) \r"] 162 | [16.483914, "o", "Resolving deltas: 9% (1061/11774) \r"] 163 | [16.485076, "o", "Resolving deltas: 10% (1193/11774) \r"] 164 | [16.489101, "o", "Resolving deltas: 11% (1313/11774) \r"] 165 | [16.490951, "o", "Resolving deltas: 12% (1475/11774) \r"] 166 | [16.49247, "o", "Resolving deltas: 13% (1540/11774) \r"] 167 | [16.494141, "o", "Resolving deltas: 14% (1664/11774) \r"] 168 | [16.496165, "o", "Resolving deltas: 15% (1842/11774) \r"] 169 | [16.496613, "o", "Resolving deltas: 16% (1885/11774) \r"] 170 | [16.498566, "o", "Resolving deltas: 17% (2022/11774) \r"] 171 | [16.500181, "o", "Resolving deltas: 18% (2136/11774) \r"] 172 | [16.501435, "o", "Resolving deltas: 19% (2241/11774) \r"] 173 | [16.503481, "o", "Resolving deltas: 20% (2382/11774) \r"] 174 | [16.504364, "o", "Resolving deltas: 21% (2477/11774) \r"] 175 | [16.506382, "o", "Resolving deltas: 22% (2621/11774) \r"] 176 | [16.509142, "o", "Resolving deltas: 23% (2749/11774) \r"] 177 | [16.511068, "o", "Resolving deltas: 24% (2831/11774) \r"] 178 | [16.513607, "o", "Resolving deltas: 26% (3172/11774) \r"] 179 | [16.513779, "o", "Resolving deltas: 27% (3185/11774) \r"] 180 | [16.517124, "o", "Resolving deltas: 28% (3348/11774) \r"] 181 | [16.522736, "o", "Resolving deltas: 29% (3452/11774) \r"] 182 | [16.529077, "o", "Resolving deltas: 30% (3556/11774) \r"] 183 | [16.529698, "o", "Resolving deltas: 31% (3689/11774) \r"] 184 | [16.533046, "o", "Resolving deltas: 32% (3832/11774) \r"] 185 | [16.533839, "o", "Resolving deltas: 33% (3913/11774) \r"] 186 | [16.535268, "o", "Resolving deltas: 34% (4012/11774) \r"] 187 | [16.538151, "o", "Resolving deltas: 35% (4159/11774) \r"] 188 | [16.544159, "o", "Resolving deltas: 36% (4249/11774) \r"] 189 | [16.546227, "o", "Resolving deltas: 37% (4370/11774) \r"] 190 | [16.548148, "o", "Resolving deltas: 38% (4529/11774) \r"] 191 | [16.572606, "o", "Resolving deltas: 40% (4779/11774) \r"] 192 | [16.574651, "o", "Resolving deltas: 41% (4916/11774) \r"] 193 | [16.575159, "o", "Resolving deltas: 42% (4948/11774) \r"] 194 | [16.576624, "o", "Resolving deltas: 43% (5064/11774) \r"] 195 | [16.590462, "o", "Resolving deltas: 44% (5209/11774) \r"] 196 | [16.604354, "o", "Resolving deltas: 45% (5308/11774) \r"] 197 | [16.609547, "o", "Resolving deltas: 46% (5437/11774) \r"] 198 | [16.610776, "o", "Resolving deltas: 47% (5534/11774) \r"] 199 | [16.612936, "o", "Resolving deltas: 48% (5670/11774) \r"] 200 | [16.6137, "o", "Resolving deltas: 49% (5770/11774) \r"] 201 | [16.614896, "o", "Resolving deltas: 50% (5892/11774) \r"] 202 | [16.615732, "o", "Resolving deltas: 51% (6008/11774) \r"] 203 | [16.617019, "o", "Resolving deltas: 52% (6128/11774) \r"] 204 | [16.617946, "o", "Resolving deltas: 53% (6241/11774) \r"] 205 | [16.619171, "o", "Resolving deltas: 54% (6377/11774) \r"] 206 | [16.620868, "o", "Resolving deltas: 55% (6522/11774) \r"] 207 | [16.621442, "o", "Resolving deltas: 56% (6600/11774) \r"] 208 | [16.622153, "o", "Resolving deltas: 57% (6712/11774) \r"] 209 | [16.624075, "o", "Resolving deltas: 58% (6923/11774) \r"] 210 | [16.624426, "o", "Resolving deltas: 59% (6952/11774) \r"] 211 | [16.625269, "o", "Resolving deltas: 60% (7077/11774) \r"] 212 | [16.626367, "o", "Resolving deltas: 61% (7206/11774) \r"] 213 | [16.627389, "o", "Resolving deltas: 62% (7302/11774) \r"] 214 | [16.630398, "o", "Resolving deltas: 65% (7678/11774) \r"] 215 | [16.631327, "o", "Resolving deltas: 66% (7775/11774) \r"] 216 | [16.633601, "o", "Resolving deltas: 67% (7891/11774) \r"] 217 | [16.635003, "o", "Resolving deltas: 68% (8023/11774) \r"] 218 | [16.635857, "o", "Resolving deltas: 69% (8126/11774) \r"] 219 | [16.637065, "o", "Resolving deltas: 70% (8250/11774) \r"] 220 | [16.638491, "o", "Resolving deltas: 71% (8387/11774) \r"] 221 | [16.640055, "o", "Resolving deltas: 72% (8524/11774) \r"] 222 | [16.641078, "o", "Resolving deltas: 73% (8598/11774) \r"] 223 | [16.641882, "o", "Resolving deltas: 74% (8713/11774) \r"] 224 | [16.643029, "o", "Resolving deltas: 75% (8833/11774) \r"] 225 | [16.644222, "o", "Resolving deltas: 76% (8956/11774) \r"] 226 | [16.64749, "o", "Resolving deltas: 78% (9210/11774) \r"] 227 | [16.648372, "o", "Resolving deltas: 79% (9310/11774) \r"] 228 | [16.64917, "o", "Resolving deltas: 80% (9421/11774) \r"] 229 | [16.649931, "o", "Resolving deltas: 81% (9539/11774) \r"] 230 | [16.650969, "o", "Resolving deltas: 82% (9656/11774) \r"] 231 | [16.652174, "o", "Resolving deltas: 83% (9785/11774) \r"] 232 | [16.653761, "o", "Resolving deltas: 84% (9922/11774) \r"] 233 | [16.654518, "o", "Resolving deltas: 85% (10041/11774) \r"] 234 | [16.655174, "o", "Resolving deltas: 86% (10127/11774) \r"] 235 | [16.655786, "o", "Resolving deltas: 87% (10246/11774) \r"] 236 | [16.656334, "o", "Resolving deltas: 88% (10362/11774) \r"] 237 | [16.65749, "o", "Resolving deltas: 89% (10488/11774) \r"] 238 | [16.659032, "o", "Resolving deltas: 90% (10615/11774) \r"] 239 | [16.660154, "o", "Resolving deltas: 91% (10720/11774) \r"] 240 | [16.661, "o", "Resolving deltas: 92% (10840/11774) \r"] 241 | [16.661813, "o", "Resolving deltas: 93% (10957/11774) \r"] 242 | [16.662726, "o", "Resolving deltas: 94% (11085/11774) \r"] 243 | [16.663403, "o", "Resolving deltas: 95% (11187/11774) \r"] 244 | [16.664193, "o", "Resolving deltas: 96% (11304/11774) \r"] 245 | [16.665067, "o", "Resolving deltas: 97% (11422/11774) \r"] 246 | [16.666214, "o", "Resolving deltas: 98% (11539/11774) \r"] 247 | [16.668596, "o", "Resolving deltas: 99% (11660/11774) \r"] 248 | [16.674338, "o", "Resolving deltas: 100% (11774/11774) \r"] 249 | [16.676309, "o", "Resolving deltas: 100% (11774/11774), done.\r\n"] 250 | [16.775957, "o", "\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m \r \r"] 251 | [16.776132, "o", "\u001b]2;computer@computers-MacBook-Air: /tmp\u0007\u001b]1;/tmp\u0007"] 252 | [16.827701, "o", "\u001b]133;D;0\u0007\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp\u0007"] 253 | [16.833569, "o", "\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b]133;A\u0007\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp\u001b[00m\u001b[31m|\u001b[00m\r\n\r\u001b[36m⇒\u001b[00m \u001b]133;B\u0007\u001b[K"] 254 | [16.833794, "o", "\u001b[?1h\u001b=\u001b[?2004h"] 255 | [17.560984, "o", "c"] 256 | [17.594409, "o", "\bcd"] 257 | [17.639018, "o", " "] 258 | [17.979606, "o", "o"] 259 | [18.085465, "o", "h"] 260 | [18.525686, "o", "myform\u001b[1m/\u001b[0m"] 261 | [19.392421, "o", "\b\u001b[0m \b"] 262 | [19.392765, "o", "\u001b[?1l\u001b>\u001b[?2004l\r\r\n"] 263 | [19.393822, "o", "\u001b]2;cd ohmyform\u0007\u001b]1;cd\u0007"] 264 | [19.393969, "o", "\u001b]133;C;\u0007"] 265 | [19.394302, "o", "\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m \r \r"] 266 | [19.394419, "o", "\u001b]2;computer@computers-MacBook-Air: /tmp/ohmyform\u0007\u001b]1;/tmp/ohmyform\u0007"] 267 | [19.497497, "o", "\u001b]133;D;0\u0007\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp/ohmyform\u0007"] 268 | [19.502331, "o", "\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b]133;A\u0007\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp/ohmyform\u001b[00m\u001b[31m|\u001b[00m\u001b[00m\u001b[32mmaster\u001b[00m \r\n\r\u001b[36m⇒\u001b[00m \u001b]133;B\u0007\u001b[K"] 269 | [19.502566, "o", "\u001b[?1h\u001b=\u001b[?2004h"] 270 | [25.320344, "o", "\u001b[7mdocker-compose up -d\u001b[27m"] 271 | [25.837507, "o", "\u001b[20D\u001b[27md\u001b[27mo\u001b[27mc\u001b[27mk\u001b[27me\u001b[27mr\u001b[27m-\u001b[27mc\u001b[27mo\u001b[27mm\u001b[27mp\u001b[27mo\u001b[27ms\u001b[27me\u001b[27m \u001b[27mu\u001b[27mp\u001b[27m \u001b[27m-\u001b[27md"] 272 | [25.837749, "o", "\u001b[?1l\u001b>\u001b[?2004l\r\r\n"] 273 | [25.83899, "o", "\u001b]2;docker-compose up -d\u0007\u001b]1;docker-compose\u0007"] 274 | [25.839242, "o", "\u001b]133;C;\u0007"] 275 | [26.687902, "o", "Starting ohmyform_mail_1 ... \r\r\n"] 276 | [26.6893, "o", "Starting ohmyform_redis_1 ... \r\r\n"] 277 | [26.694063, "o", "Starting ohmyform_mongo_1 ... \r\r\n"] 278 | [27.742567, "o", "\u001b[2A\u001b[2K\rStarting ohmyform_redis_1 ... \u001b[32mdone\u001b[0m\r\u001b[2B"] 279 | [27.843814, "o", "\u001b[3A\u001b[2K\rStarting ohmyform_mail_1 ... \u001b[32mdone\u001b[0m\r\u001b[3B"] 280 | [27.905473, "o", "\u001b[1A\u001b[2K\rStarting ohmyform_mongo_1 ... \u001b[32mdone\u001b[0m\r\u001b[1B"] 281 | [27.906391, "o", "Starting ohmyform_tellform_1 ... \r\r\n"] 282 | [27.908355, "o", "Starting ohmyform_mongoexpress_1 ... \r\r\n"] 283 | [29.442534, "o", "\u001b[2A\u001b[2K\rStarting ohmyform_tellform_1 ... \u001b[32mdone\u001b[0m\r\u001b[2B"] 284 | [29.554042, "o", "\u001b[1A\u001b[2K\rStarting ohmyform_mongoexpress_1 ... \u001b[32mdone\u001b[0m\r\u001b[1B"] 285 | [29.639333, "o", "\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m \r \r"] 286 | [29.639622, "o", "\u001b]2;computer@computers-MacBook-Air: /tmp/ohmyform\u0007\u001b]1;/tmp/ohmyform\u0007"] 287 | [29.751659, "o", "\u001b]133;D;0\u0007\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp/ohmyform\u0007"] 288 | [29.759421, "o", "\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b]133;A\u0007\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp/ohmyform\u001b[00m\u001b[31m|\u001b[00m\u001b[00m\u001b[32mmaster\u001b[00m \r\n\r\u001b[36m⇒\u001b[00m \u001b]133;B\u0007\u001b[K"] 289 | [29.759734, "o", "\u001b[?1h\u001b=\u001b[?2004h"] 290 | [30.884998, "o", "d"] 291 | [30.968543, "o", "\bdo"] 292 | [31.074328, "o", "c"] 293 | [31.16178, "o", "k"] 294 | [31.284767, "o", "e"] 295 | [31.31809, "o", "r"] 296 | [31.420751, "o", "-"] 297 | [32.099325, "o", "c"] 298 | [32.244294, "o", "o"] 299 | [32.304453, "o", "m"] 300 | [32.438314, "o", "p"] 301 | [32.514015, "o", "o"] 302 | [32.574616, "o", "s"] 303 | [32.72578, "o", " "] 304 | [33.218234, "o", "\b"] 305 | [33.353387, "o", "e"] 306 | [33.432526, "o", " "] 307 | [34.004826, "o", "p"] 308 | [34.105889, "o", "s"] 309 | [34.338213, "o", "\u001b[?1l\u001b>"] 310 | [34.338937, "o", "\u001b[?2004l\r\r\n"] 311 | [34.340419, "o", "\u001b]2;docker-compose ps\u0007\u001b]1;docker-compose\u0007"] 312 | [34.340874, "o", "\u001b]133;C;\u0007"] 313 | [34.922542, "o", " Name Command State Ports \r\n---------------------------------------------------------------------------------------------------\r\nohmyform_mail_1 MailHog Up 1025/tcp, 0.0.0.0:5050->8025/tcp\r\nohmyform_mongo_1 docker-entrypoint.sh mongod Up 27017/tcp \r\nohmyform_mongoexpress_1 tini -- /docker-entrypoint ... Up 0.0.0.0:5051->8081/tcp \r\nohmyform_redis_1 docker-entrypoint.sh redis ... Up 6379/tcp \r\nohmyform_tellform_1 docker-entrypoint.sh node ... Up 0.0.0.0:5000->5000/tcp \r\n"] 314 | [34.987528, "o", "\u001b[1m\u001b[7m%\u001b[27m\u001b[1m\u001b[0m \r \r"] 315 | [34.987814, "o", "\u001b]2;computer@computers-MacBook-Air: /tmp/ohmyform\u0007\u001b]1;/tmp/ohmyform\u0007"] 316 | [35.067743, "o", "\u001b]133;D;0\u0007\u001b]1337;RemoteHost=computer@computers-MacBook-Air.local\u0007\u001b]1337;CurrentDir=/tmp/ohmyform\u0007"] 317 | [35.074926, "o", "\r\u001b[0m\u001b[27m\u001b[24m\u001b[J\u001b]133;A\u0007\u001b[35mcomputer\u001b[00m\u001b[36m@\u001b[00m\u001b[33mcomputers-MacBook-Air\u001b[00m\u001b[31m:\u001b[00m\u001b[36m/tmp/ohmyform\u001b[00m\u001b[31m|\u001b[00m\u001b[00m\u001b[32mmaster\u001b[00m \r\n\r\u001b[36m⇒\u001b[00m \u001b]133;B\u0007\u001b[K"] 318 | [35.075109, "o", "\u001b[?1h\u001b=\u001b[?2004h"] 319 | [36.621084, "o", "\u001b[?2004l\r\r\n"] 320 | --------------------------------------------------------------------------------