Browse Source

First commit

Thibaud Colas 8 năm trước cách đây
commit
3dbf021c00
5 tập tin đã thay đổi với 137 bổ sung0 xóa
  1. 22 0
      .editorconfig
  2. 72 0
      .gitignore
  3. 7 0
      .travis.yml
  4. 22 0
      README.md
  5. 14 0
      contributing.md

+ 22 - 0
.editorconfig

@@ -0,0 +1,22 @@
+# Defines the coding style for different editors and IDEs.
+# http://editorconfig.org
+
+# top-most EditorConfig file
+root = true
+
+# Rules for source code.
+[*]
+charset = utf-8
+end_of_line = lf
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = space
+indent_size = 4
+
+# Rules for tool configuration.
+[{package.json,*.yml}]
+indent_size = 2
+
+# Rules for markdown documents.
+[*.md]
+trim_trailing_whitespace = false

+ 72 - 0
.gitignore

@@ -0,0 +1,72 @@
+# -------------------------------------------------
+# Your own project's ignores
+# -------------------------------------------------
+ab-results-README.md.json
+
+# -------------------------------------------------
+# OS generated files
+# -------------------------------------------------
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
+
+# -------------------------------------------------
+# Logs and databases
+# -------------------------------------------------
+logs
+*.log
+npm-debug.log
+
+# -------------------------------------------------
+# Runtime data
+# -------------------------------------------------
+pids
+*.pid
+*.seed
+*.pyc
+
+# -------------------------------------------------
+# Directory for instrumented libs generated by jscoverage/JSCover
+# -------------------------------------------------
+lib-cov
+
+# -------------------------------------------------
+# Coverage directory used by tools like istanbul
+# -------------------------------------------------
+coverage
+
+# -------------------------------------------------
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+# -------------------------------------------------
+.grunt
+
+# -------------------------------------------------
+# Compiled binary addons (http://nodejs.org/api/addons.html)
+# -------------------------------------------------
+build/Release
+
+# -------------------------------------------------
+# Dependency directories
+# Commenting this out is preferred by some people, see
+# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
+# -------------------------------------------------
+node_modules
+bower_components
+
+# -------------------------------------------------
+# Users Environment Variables
+# -------------------------------------------------
+.lock-wscript
+.idea
+.vagrant
+.anaconda
+
+# -------------------------------------------------
+# Generated files
+# -------------------------------------------------
+/core/static/js/*
+/dist/

+ 7 - 0
.travis.yml

@@ -0,0 +1,7 @@
+language: ruby
+rvm:
+  - 2.2
+before_script:
+  - gem install awesome_bot
+script:
+  - awesome_bot README.md --allow-redirect

+ 22 - 0
README.md

@@ -0,0 +1,22 @@
+Awesome Wagtail [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
+===============
+
+> A curated list of awesome bookmarks, packages, tutorials, videos and other cool resources from the Wagtail ecosystem.
+
+## Table of Contents
+
+https://wagtail.io/
+https://github.com/torchbox/wagtail
+http://madewithwagtail.org/
+
+## Contribute
+
+Contributions are always welcome!
+Please read the [contribution guidelines](contributing.md) first.
+
+## License
+
+[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
+
+To the extent possible under law, [Springload](https://www.springload.co.nz/) has waived all copyright and related or neighboring rights to this work.
+

+ 14 - 0
contributing.md

@@ -0,0 +1,14 @@
+# Contribution Guidelines
+
+Please ensure your pull request adheres to the following guidelines:
+
+- Search previous suggestions before making a new one, as yours may be a duplicate.
+- Suggested additions should be related to Wagtail
+- Make an individual pull request for each suggestion.
+- New categories, or improvements to the existing categorization are welcome.
+- Keep descriptions short and simple, but descriptive.
+- Start the description with a capital and end with a full stop/period.
+- Check your spelling and grammar.
+- Make sure your text editor is set to remove trailing whitespace.
+
+Thank you for your suggestions!