generated from NASA-PDS/template-repo-java
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from NASA-PDS/prepare_v1
Prepare v1
- Loading branch information
Showing
36 changed files
with
3,905 additions
and
186 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# 🏃♀️ Continuous Integration and Delivery: Stable | ||
# =============================================== | ||
# | ||
# Note: for this workflow to succeed, the following secrets must be installed | ||
# in the repository: | ||
# | ||
# ``ADMIN_GITHUB_TOKEN`` | ||
# A personal access token of a user with collaborator or better access to | ||
# the project repository. You can generate this by visiting GitHub → | ||
# Settings → Developer settings → Personal access tokens → Generate new | ||
# token. Give the token scopes on ``repo``, ``write:packages``, | ||
# ``delete:packages``, ``workflow``, and ``read:gpg_key``. | ||
# ``PYPI_USERNAME`` | ||
# Username for pypi.org. | ||
# ``PYPI_PASSWORD`` | ||
# Password for ``PYPI_USERNAME``. | ||
# | ||
|
||
|
||
--- | ||
|
||
name: 😌 Stable integration & delivery | ||
|
||
|
||
# Driving Event | ||
# ------------- | ||
# | ||
# What event starts this workflow: a push of a release tag. Note: according to | ||
# https://git.io/JJZQt we have been doing our tag matching wrong. It's not | ||
# regexp, it's not glob…it's more like…glob++ 😮 | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release/*' | ||
|
||
|
||
# What to Do | ||
# ---------- | ||
# | ||
# Round up, yee-haw! | ||
|
||
jobs: | ||
stable-assembly: | ||
name: 🐴 Stable Assembly | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: 💳 Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
token: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
fetch-depth: 0 | ||
- | ||
name: 💵 Python Cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
# The "key" used to indicate a set of cached files is the operating system runner | ||
# plus "py" for Python-specific builds, plus a hash of the wheels, plus "pds" because | ||
# we pds-prefix everything with "pds" in PDS! 😅 | ||
key: pds-${{runner.os}}-py-${{hashFiles('**/*.whl')}} | ||
# To restore a set of files, we only need to match a prefix of the saved key. | ||
restore-keys: pds-${{runner.os}}-py- | ||
- | ||
name: 🤠 Roundup | ||
uses: NASA-PDS/roundup-action@stable | ||
with: | ||
assembly: stable | ||
env: | ||
pypi_username: ${{secrets.PYPI_USERNAME}} | ||
pypi_password: ${{secrets.PYPI_PASSWORD}} | ||
ADMIN_GITHUB_TOKEN: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
|
||
... | ||
|
||
# -*- mode: yaml; indent: 4; fill-column: 120; coding: utf-8 -*- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# 🏃♀️ Continuous Integration and Delivery: Unstable | ||
# ================================================= | ||
# | ||
# Note: for this workflow to succeed, the following secrets must be installed | ||
# in the repository (or inherited from the repository's organization): | ||
# | ||
# ``ADMIN_GITHUB_TOKEN`` | ||
# A personal access token of a user with collaborator or better access to | ||
# the project repository. You can generate this by visiting GitHub → | ||
# Settings → Developer settings → Personal access tokens → Generate new | ||
# token. Give the token scopes on ``repo``, ``write:packages``, | ||
# ``delete:packages``, ``workflow``, and ``read:gpg_key``. | ||
# ``TEST_PYPI_USERNAME`` | ||
# Username for test.pypi.org. | ||
# ``TEST_PYPI_PASSWORD`` | ||
# Password for ``TEST_PYPI_USERNAME``. | ||
# | ||
|
||
|
||
--- | ||
|
||
name: 🤪 Unstable integration & delivery | ||
|
||
|
||
# Driving Event | ||
# ------------- | ||
# | ||
# What event starts this workflow: a push to ``main`` (or ``master`` in old | ||
# parlance). For the "glob++" pattern syntax, see https://git.io/JJZQt | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'CHANGELOG.md' | ||
- 'docs/requirements/**' | ||
workflow_dispatch: | ||
|
||
|
||
# What to Do | ||
# ---------- | ||
# | ||
# Round up, yee-haw! | ||
|
||
jobs: | ||
unstable-assembly: | ||
name: 🧩 Unstable Assembly | ||
if: github.actor != 'pdsen-ci' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: 💳 Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
token: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
fetch-depth: 0 | ||
- | ||
name: 💵 Python Cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
# The "key" used to indicate a set of cached files is the operating system runner | ||
# plus "py" for Python-specific builds, plus a hash of the wheels, plus "pds" because | ||
# we pds-prefix everything with "pds" in PDS! 😅 | ||
key: pds-${{runner.os}}-py-${{hashFiles('**/*.whl')}} | ||
# To restore a set of files, we only need to match a prefix of the saved key. | ||
restore-keys: pds-${{runner.os}}-py- | ||
- | ||
name: 🤠 Roundup | ||
uses: NASA-PDS/roundup-action@stable | ||
with: | ||
assembly: unstable | ||
env: | ||
pypi_username: ${{secrets.TEST_PYPI_USERNAME}} | ||
pypi_password: ${{secrets.TEST_PYPI_PASSWORD}} | ||
ADMIN_GITHUB_TOKEN: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
|
||
... | ||
|
||
# -*- mode: yaml; indent: 4; fill-column: 120; coding: utf-8 -*- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# This file only contains a selection of the most common options. For a full | ||
# list see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Path setup -------------------------------------------------------------- | ||
|
||
# If extensions (or modules to document with autodoc) are in another directory, | ||
# add these directories to sys.path here. If the directory is relative to the | ||
# documentation root, use os.path.abspath to make it absolute, like shown here. | ||
# | ||
# import os | ||
# import sys | ||
# sys.path.insert(0, os.path.abspath('.')) | ||
|
||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = 'My PDS Project' | ||
copyright = '2021 California Institute of Technology' | ||
author = 'NASA Planetary Data System' | ||
release = '0.0' | ||
version = '0.0' | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
||
# Add any Sphinx extension module names here, as strings. They can be | ||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | ||
# ones. | ||
extensions = [ | ||
'sphinx.ext.autodoc', | ||
'sphinx.ext.doctest', | ||
'sphinx.ext.todo', | ||
'sphinx.ext.viewcode', | ||
'sphinx.ext.githubpages', | ||
'sphinx.ext.autosummary', | ||
'sphinx_rtd_theme', | ||
'sphinx.ext.intersphinx', | ||
'sphinxcontrib.openapi', | ||
'sphinxcontrib.redoc' | ||
] | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ['_templates'] | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
# This pattern also affects html_static_path and html_extra_path. | ||
exclude_patterns = [] | ||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
|
||
# The theme to use for HTML and HTML Help pages. See the documentation for | ||
# a list of builtin themes. | ||
# | ||
html_theme = 'sphinx_rtd_theme' | ||
|
||
# Add any paths that contain custom static files (such as style sheets) here, | ||
# relative to this directory. They are copied after the builtin static files, | ||
# so a file named "default.css" will overwrite the builtin "default.css". | ||
html_static_path = ['_static'] | ||
|
||
# -- Read the docs config ------- | ||
|
||
html_logo = '_static/images/PDS_Planets.png' | ||
|
||
redoc_uri = 'https://cdn.jsdelivr.net/npm/redoc@2.0.0-alpha.17/bundles/redoc.standalone.js' | ||
|
||
redoc = [ | ||
{ | ||
'name': 'PDS Search API', | ||
'page': 'specifications/search-v1.0.0-SNAPSHOT-redoc', | ||
'spec': '../../specs/PDS_APIs-search-1.0.0-SNAPSHOT-swagger.yaml', | ||
'embed': True, | ||
}, | ||
{ | ||
'name': 'PDS DOI API', | ||
'page': 'specifications/doi-v0.2-redoc', | ||
'spec': '../../specs/PDS_APIs-doi-0.2-swagger.yaml', | ||
'embed': True, | ||
} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
API implementations | ||
=================== | ||
|
||
Search | ||
-------- | ||
|
||
- Server: https://github.com/NASA-PDS/registry-api | ||
- Client: https://github.com/NASA-PDS/pds-api-client | ||
|
||
DOI | ||
--- | ||
|
||
- Server: https://github.com/NASA-PDS/doi-service/ | ||
- Client (UI): https://github.com/NASA-PDS/doi-ui/ | ||
- Client (react component): to be completed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
PDS is willing to develop ReST-ful web APIs for different applications (so far, registry, dois). | ||
|
||
These pages document how to access these APIs: | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
overview | ||
specifications | ||
implementations | ||
support | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.