Yzena's monorepo. Includes Yvm, Yao, Rig, Ur, and Yar.
https://docs.yzena.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1004 B
37 lines
1004 B
#! /bin/sh |
|
# |
|
# ***** BEGIN LICENSE BLOCK ***** |
|
# |
|
# Copyright 2017-2022 Yzena Tech |
|
# |
|
# Licensed under the Yzena Network License, Version 0.1 (the "Yzena Network |
|
# License" or "YNL"). You may not use this file except in compliance with the |
|
# Yzena Network License. |
|
# |
|
# You may obtain a copy of the Yzena Network License at |
|
# |
|
# https://yzena.com/yzena-network-license/ |
|
# |
|
# Unless required by applicable law or agreed to in writing, software |
|
# distributed under the Yzena Network License is distributed under the |
|
# following disclaimer: |
|
# |
|
# As far as the law allows, this software comes as is, without any |
|
# warranty or condition, and no contributor will be liable to anyone for |
|
# any damages related to this software or this license, under any kind of |
|
# legal claim. |
|
# |
|
# ****** END LICENSE BLOCK ****** |
|
# |
|
|
|
script="$0" |
|
scriptdir=$(dirname "$script") |
|
|
|
if [ "$#" -gt 0 ]; then |
|
builddir="$1" |
|
shift |
|
else |
|
builddir="$scriptdir/../../../build" |
|
fi |
|
|
|
python -m http.server --directory "$builddir/docs/sphinx/"
|
|
|