Distributed Information Systems. Repo template.
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
dymik739 c690328d60 add member names and contact information on the main page of the lab results hosting 2024-02-13 22:47:45 +02:00
docs add member names and contact information on the main page of the lab results hosting 2024-02-13 22:47:45 +02:00
src initial 2021-08-30 18:54:57 +03:00
test initial 2021-08-30 18:54:57 +03:00
.gitignore Initial commit 2021-08-30 16:52:17 +03:00
LICENSE initial 2021-08-30 18:54:57 +03:00
README.md update readme 2021-08-30 18:57:34 +03:00
jsdoc.json initial 2021-08-30 18:54:57 +03:00
package-lock.json initial 2021-08-30 18:54:57 +03:00
package.json change links to point to main repo, configure vuepress deployment 2024-02-12 16:17:17 +02:00
publish.sh change links to point to main repo, configure vuepress deployment 2024-02-12 16:17:17 +02:00

README.md

Шаблон репозиторію для виконання лабораторних робіт з дисципліни "Розподілені інформаційні системи"

Як використовувати

В цьому репозиторії знаходиться шаблон для виконання лабораторних робіт.

Для виконання лабораторних робіт необхідно зробити fork цього репозіторію, склонувати вже власний репозіторій та розміщувати документацію у відповідних діректоріях ./docs.

В цьому файлі необхідно вказати назву проекту. Коротку загальну характеристику проекту, контактні дані виконавців.

Шаблон публікування підготовлено з використанням VuePress, та стартера FriendlyUser/vuepress-theme-cool-starter.

Щоб опублікувати проект у Github Pages, налаштовуємо Github Pages (гілка gh-pages), змінюємо файл ./publish.sh


#!/usr/bin/env sh

# abort on errors
set -e

# build
npm run docs:build

# navigate into the build output directory
cd docs/.vuepress/dist

# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME

git init
git add -A
git commit -m 'deploy'

# if you are deploying to https://<USERNAME>.github.io
# git push -f git@github.com:boldak/<USERNAME>.github.io.git master

# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f https://github.com/<USERNAME>/dis-edu.git master:gh-pages

cd -

Потім запускаємо

    npm run publish

Для відлагодження документації в локальному режимі запускаємо

    npm run docs:dev

Доступ до локально опублікованої версії документації http://localhost:3030

Happy learning! Happy coding!