initial commit

This commit is contained in:
Allan Bowe 2018-07-04 15:20:03 +02:00
commit a073cd1722
7 changed files with 2401 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
site/

8
README.md Normal file
View File

@ -0,0 +1,8 @@
Installation
1. brew install mkdocs
2. pip install mkdocs-material
3. pip install fontawesome_markdown
To build, navigate to the root of this repo and run:
mkdocs build --clean

14
docs/dc-userguide.md Normal file
View File

@ -0,0 +1,14 @@
<h1> Data Controller for SAS: User Guide </h1>
## What does the Data Controller do?
The Data Controller for SAS allows user to add, modify data. All changes are staged and approved before being applied to the target table. The review process, as well as using generic and repeatable code to perform updates, helps to ensure data integrity.
#What is a Target Table?
A Target Table is a physical table, such as a SAS dataset or a Table in a database. The attributes of this table (eg Primary Key, loadtype, library, SCD variables etc) will have been predefined by your administrator so that you can change the data in that table safely and easily.
q

2337
docs/font-awesome.css vendored Normal file

File diff suppressed because it is too large Load Diff

BIN
docs/img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

17
docs/index.md Normal file
View File

@ -0,0 +1,17 @@
# Welcome to MkDocs
For full documentation visit [mkdocs.org](http://mkdocs.org).
## Commands
* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs help` - Print this help message.
## Project layout
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

24
mkdocs.yml Normal file
View File

@ -0,0 +1,24 @@
site_name: MacroPeople Data Controller Product Documentation
pages:
- Home: index.md
- Using Data Controller:
- Data Controller User Guide : dc-userguide.md
# - Data Controller Admin Guide
#- Installing Data Controller
markdown_extensions:
- admonition
- pymdownx.superfences
- codehilite
- fontawesome_markdown
#extra_css: ['font-awesome.css']
theme:
name: material
logo: 'img/favicon.ico'
palette:
primary: 'White'
accent: 'Amber'
font:
text: 'Open Sans'
code: 'Ubuntu Mono'
copyright: All rights reserved &copy;2018 Macro People Ltd.