Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Jan 15, 2020
0 parents commit 52fab3a
Show file tree
Hide file tree
Showing 12 changed files with 199 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .doctor-rst.yaml
@@ -0,0 +1,43 @@
rules:
no_inheritdoc: ~
avoid_repetetive_words: ~
blank_line_after_directive: ~
short_array_syntax: ~
no_app_console: ~
typo: ~
replacement: ~
composer_dev_option_not_at_the_end: ~
yarn_dev_option_at_the_end: ~
versionadded_directive_should_have_version: ~
deprecated_directive_should_have_version: ~
no_composer_req: ~
no_php_open_tag_in_code_block_php_directive: ~
no_blank_line_after_filepath_in_php_code_block: ~
no_blank_line_after_filepath_in_yaml_code_block: ~
no_blank_line_after_filepath_in_xml_code_block: ~
no_blank_line_after_filepath_in_twig_code_block: ~
php_prefix_before_bin_console: ~
use_deprecated_directive_instead_of_versionadded: ~
no_space_before_self_xml_closing_tag: ~
no_explicit_use_of_code_block_php: ~
ensure_order_of_code_blocks_in_configuration_block: ~
american_english: ~
valid_use_statements: ~
lowercase_as_in_use_statements: ~
ordered_use_statements: ~
no_namespace_after_use_statements: ~
correct_code_block_directive_based_on_the_content: ~
max_blank_lines:
max: 2
replace_code_block_types: ~
use_https_xsd_urls: ~
blank_line_before_directive: ~
extension_xlf_instead_of_xliff: ~
valid_inline_highlighted_namespaces: ~
indention: ~
unused_links: ~
yaml_instead_of_yml_suffix: ~
extend_abstract_controller: ~

# do not report as violation
whitelist:
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1 @@
* @core23
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug.md
@@ -0,0 +1,48 @@
---
name: 🐞 Bug Report
about: Something is broken? 🔨
---

<!--
Before you open an issue, make sure this one does not already exist.
-->

<!--
If you are reporting a bug, please try to fill in the following.
Otherwise remove it.
-->

### Environment

#### Packages

```
$ composer show --latest
# Put the result here.
```

#### PHP version

```
$ php -v
# Put the result here.
```

## Subject

<!--
Give here as many details as possible.
Next sections are for ERRORS only.
-->

## Steps to reproduce

## Expected results

## Actual results

<!--
If it's an error message or piece of code, use code block tags,
and make sure you provide the whole stack trace(s),
not just the first error message you can see.
-->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature.md
@@ -0,0 +1,8 @@
---
name: 🚀 Feature Request
about: I have a suggestion (and may want to implement it)!
---

## Feature Request

<!-- Provide a summary of the feature. -->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/Question.md
@@ -0,0 +1,8 @@
---
name: ❓ Support Question
about: I have a general question 💬!
---

## Question


12 changes: 12 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,12 @@
<!-- THE PR TEMPLATE IS NOT AN OPTION. DO NOT DELETE IT, MAKE SURE YOU READ AND EDIT IT! -->

<!--
Specify which issues will be fixed/closed.
Remove it if this is not related.
-->

Closes #{put_issue_number_here}

## Subject

<!-- Describe your Pull Request content here -->
47 changes: 47 additions & 0 deletions .github/settings.yml
@@ -0,0 +1,47 @@
# These settings are synced to GitHub by https://probot.github.io/apps/settings/

repository:
name: docs.nucleos.rocks
description: Documentation for all nucleos projects
homepage: https://docs.nucleos.rocks
topics: documentation

default_branch: master
private: false
allow_squash_merge: true
allow_merge_commit: true
allow_rebase_merge: true
has_issues: true
has_pages: false
has_projects: false
has_wiki: false

labels:
- name: automerge
color: ededed
- name: docs
color: fbca04
- name: help wanted
color: 159818
- name: invalid
color: e6e6e6
- name: pedantic
color: DDDDDD
- name: bug
color: fc2929
- name: feature
color: 0e8a16
- name: question
color: cc317c

branches:
- name: master
protection:
enforce_admins: falser
required_status_checks:
contexts:
- "Lint / DOCtor-RST"
strict: true

required_pull_request_reviews: null
restrictions: null
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,14 @@
on: [push, pull_request]

name: Lint

jobs:
doctor-rst:
name: DOCtor-RST
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: DOCtor-RST
uses: docker://oskarstark/doctor-rst
with:
args: --short
7 changes: 7 additions & 0 deletions README.md
@@ -0,0 +1,7 @@
![nucleos Logo](images/logo.png)

Nucleos - PHP Projects
======================

[![Continuous Integration](https://github.com/nucleos/docs.nucleos.rocks/workflows/Lint/badge.svg)](https://github.com/nucleos/docs.nucleos.rocks/actions)
[![Awesome Badges](https://img.shields.io/badge/read-docs-green.svg)](https://docs.nucleos.rocks)
1 change: 1 addition & 0 deletions _config.yml
@@ -0,0 +1 @@
theme: jekyll-theme-slate
Binary file added images/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions index.rst
@@ -0,0 +1,10 @@
.. image:: images/logo.png

Nucleos - PHP Projects
======================

.. toctree::
:maxdepth: 1

NucleosUserBundle - Simple user management <https://docs.nucleos.rocks/projects/user-bundle>
NucleosProfileBundle - Registration and user profiles <https://docs.nucleos.rocks/projects/profile-bundle>

0 comments on commit 52fab3a

Please sign in to comment.