Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit fe755bd

Browse files
refactor: monorepo
1 parent 3e27250 commit fe755bd

157 files changed

Lines changed: 14329 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ $RECYCLE.BIN/
2323
Thumbs.db
2424
UserInterfaceState.xcuserstate
2525
.env
26+
27+
.deckgo

docs/.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
insert_final_newline = false
15+
trim_trailing_whitespace = false

docs/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<a name="1.0.0-alpha.3"></a>
2+
# [1.0.0-alpha.3](https://github.com/deckgo/deckdeckgo-docs/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2019-02-17)
3+
4+
### Features
5+
6+
* add slot `actions` ([b124614](https://github.com/deckgo/deckdeckgo-docs/commit/b12461406331aa50fb2612c096123bd70fedaa71))
7+
* slot `backgorund` is now cloned ([e7c8b15](https://github.com/deckgo/deckdeckgo-docs/commit/e7c8b150596c30ac7005a1695fc877eb3fba691a))
8+
9+
<a name="1.0.0-alpha.2"></a>
10+
# [1.0.0-alpha.2](https://github.com/deckgo/deckdeckgo-docs/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2019-02-14)
11+
12+
### Features
13+
14+
* add Nodejs prerequisite ([#7](https://github.com/deckgo/deckdeckgo-docs/issues/7))
15+
* add chapter "publish" ([#6](https://github.com/deckgo/deckdeckgo-docs/issues/6))
16+
* improve chapter "theming" ([#5](https://github.com/deckgo/deckdeckgo-docs/issues/5))
17+
* add chapter "running" ([#4](https://github.com/deckgo/deckdeckgo-docs/issues/4))
18+
* add chapter "remote control" ([#3](https://github.com/deckgo/deckdeckgo-docs/issues/3))
19+
* add chapter "open source and repos" ([#2](https://github.com/deckgo/deckdeckgo-docs/issues/2))

docs/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 DeckDeckGo team
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

docs/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# DeckDeckGo - Docs
2+
3+
This project is the documentation of [DeckDeckGo].
4+
5+
The documentation is written in markdown and developed with the [Ionic PWA Toolkit](https://ionicframework.com/pwa/toolkit).
6+
7+
## Table of contents
8+
9+
- [Getting Started](#getting-started)
10+
- [License](#license)
11+
12+
## Getting Started
13+
14+
To develop and run this documentation locally, proceed as following:
15+
16+
```
17+
git clone https://github.com/deckgo/deckdeckgo
18+
cd deckdeckgo/docs
19+
npm install
20+
npm run start
21+
```
22+
23+
## License
24+
25+
MIT © DeckDeckGo team
26+
27+
[DeckDeckGo]: https://deckdeckgo.com

0 commit comments

Comments
 (0)