Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit f7a0f0e

Browse files
author
Jamie Snape
committed
Add documentation configuration and stub
1 parent 967cd94 commit f7a0f0e

File tree

6 files changed

+59
-2
lines changed

6 files changed

+59
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ composer.lock
77
composer.phar
88
cron.yaml
99
node_modules/
10+
site/
1011
vendor/

app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ env_variables:
4747

4848
skip_files:
4949
- ^(.*/)?.*/(\.DS_Store|\.htaccess|\.gitignore|CMakeLists\.txt|.*\.java)$
50-
- ^(.*/)?(\.coveralls\.yml|\.travis\.yml|AUTHORS|bower\.json|composer\.json|composer\.lock|COPYRIGHT|CTestConfig\.cmake|cron-sample\.yaml|LICENSE|README\.md|Vagrantfile)$
50+
- ^(.*/)?(\.coveralls\.yml|\.travis\.yml|AUTHORS|bower\.json|composer\.json|composer\.lock|COPYRIGHT|CTestConfig\.cmake|cron-sample\.yaml|LICENSE|mkdocs\.yml|README\.md|requirements\.txt|Vagrantfile)$
5151
- ^(.*/)?core/configs/.*\.local\.ini$
52-
- ^(.*/)?(\.git|\.idea|\.vagrant|data|log|provisioning|tests|tmp|utils)/.*
52+
- ^(.*/)?(\.git|\.idea|\.vagrant|data|docs|log|provisioning|site|tests|tmp|utils)/.*
5353
- ^(.*/)?(core|modules/.*)/(database/(pgsql|sqlite)|tests)/.*
5454
- ^(.*/)?modules/(archive|batchmake|dicom.*|example|javauploaddownload|metadataextractor|pvw|remoteprocessing|solr|statistics|visualize)/.*

cron-sample.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
#=============================================================================
2+
# MIDAS Server
3+
# Copyright (c) Kitware SAS. 26 rue Louis Guérin. 69100 Villeurbanne, FRANCE
4+
# All rights reserved.
5+
# More information http://www.kitware.com
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0.txt
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
#=============================================================================
19+
120
---
221
# Enable the task scheduler module and rename this file "cron.yaml".
322
cron:

docs/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Welcome to the Midas Server Documentation #
2+
3+
Midas Server is an open-source application that enables the rapid creation of
4+
tailored, web-enabled data storage. Designed to meet the needs of advanced
5+
data-centric computing, Midas Server addresses the growing challenge of large
6+
data by providing a flexible, intelligent data storage system. Midas Server
7+
integrates multimedia server technology with other open-source data analysis
8+
and visualization tools to enable data-intensive applications that easily
9+
interface with existing workflows.

mkdocs.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#=============================================================================
2+
# MIDAS Server
3+
# Copyright (c) Kitware SAS. 26 rue Louis Guérin. 69100 Villeurbanne, FRANCE
4+
# All rights reserved.
5+
# More information http://www.kitware.com
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0.txt
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
#=============================================================================
19+
20+
---
21+
site_name: Midas Server
22+
site_url: https://midas-server.readthedocs.org/
23+
repo_url: https://github.com/midasplatform/Midas
24+
site_description: Server component of the Midas Platform
25+
site_favicon: ../favicon.ico
26+
theme: readthedocs
27+
markdown_extensions: [admonition, smarty]

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mkdocs

0 commit comments

Comments
 (0)