initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
site/
|
||||||
@@ -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
|
||||||
@@ -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
|
||||||
|
|
||||||
Vendored
+2337
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
@@ -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
@@ -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 ©2018 Macro People Ltd.
|
||||||
Reference in New Issue
Block a user