7 Commits

5 changed files with 32 additions and 14 deletions
+4 -4
View File
@@ -15,7 +15,7 @@ module.exports = {
}] }]
], ],
port: 3030, port: 3030,
base: '/docs/', base: '/edu-dis-labs/',
theme: 'cool', theme: 'cool',
// dest: 'dist', // dest: 'dist',
head: [ head: [
@@ -74,10 +74,10 @@ module.exports = {
lastUpdated: 'Останнє оновлення', // string | boolean lastUpdated: 'Останнє оновлення', // string | boolean
// Assumes GitHub. Can also be a full GitLab url. // Assumes GitHub. Can also be a full GitLab url.
repo: 'https://github.com/boldak/edu-dis-labs', repo: 'http://139.162.162.130:3000/hasslesstech/edu-dis-labs',
// Customising the header label // Customising the header label
// Defaults to "GitHub"/"GitLab"/"Bitbucket" depending on `themeConfig.repo` // Defaults to "GitHub"/"GitLab"/"Bitbucket" depending on `themeConfig.repo`
repoLabel: 'Github', repoLabel: 'Gitea',
// Optional options for generating "Edit this page" link // Optional options for generating "Edit this page" link
@@ -110,4 +110,4 @@ module.exports = {
md.use(require('markdown-it-admonition')) md.use(require('markdown-it-admonition'))
} }
} }
} }
+14 -5
View File
@@ -3,17 +3,26 @@ home: true
actionText: Розпочати → actionText: Розпочати →
actionLink: /intro/ actionLink: /intro/
footer: "ECL 2.0 Licensed | Copyright © [YYYY] [Your Name]" footer: "ECL 2.0 Licensed | Copyright © 2024 [Your Name]"
--- ---
**Виконали:** **Виконали:**
*студенти [X]-го курсу, групи (шифр групи)* *студенти 2-го курсу, групи ІО-23:*
**[ім’я ПРІЗВИЩЕ] [Посилання email, tg, fb]** *Олег ШМУЛЯР [shmuliar1@ukr.net, [@dmytrofiot23](https://t.me/dmytrofiot23)]*
**[ім’я ПРІЗВИЩЕ] [Посилання email, tg, fb]** *Андрій БОДНАР [bodnarandrew123@gmail.com, [@andrux4](https://t.me/andrux4)]*
*Андрій ШВЕД [andreyfrog26@gmail.com, [@Rhinemann](https://t.me/Rhinemann)]*
*Євгеній ГОЛОВАТЕНКО [ievgeniigol@gmail.com, [@yevholova](https://t.me/yevholova)]*
*Вікторія ВОДЯНА [vodyanayaviktoria@gmail.com, [@victoriavodyana](https://t.me/victoriavodyana)]*
*Михайло КОРБУТ [korbutmykhailo@gmail.com, [@misha1tigr](https://t.me/misha1tigr)]*
*Олександр ГУРАНЕЦЬ [bacant150@gmail.com, [@Bacant150](https://t.me/Bacant150)]*
**Керівник** **Керівник**
+10
View File
@@ -1,5 +1,15 @@
# Розроблення вимог до системи # Розроблення вимог до системи
## Вступ
У даному розділі проводиться аналіз предметної області, пов'язаної з системою організації та управління експертними опитуваннями.
Аналіз методів експертного опитування розкриє їхні переваги та недоліки.
Розпишемо підходи та методи організації систем організації та опитування експертів.
Ми визначимо доцільність розробки нового проєкту шляхом аналізу переваг та недоліків наявних інструментів, а також їх зіставлення з нашим майбутнім.
В глосарії опишемо основні терміни та поняття, котрі можна зустріти в сфері експертних опитувань.
У висновку сформуємо ключові аспекти, на які слід звертати увагу, щоб забезпечити успішну та ефективну реалізацію проєкту.
## Основні визначення ## Основні визначення
*[Розділ містить визначення термінів та скорочень, які використовуються при аналізі предметної області.]* *[Розділ містить визначення термінів та скорочень, які використовуються при аналізі предметної області.]*
+2 -3
View File
@@ -3,11 +3,11 @@
"version": "2.1.0", "version": "2.1.0",
"main": "index.js", "main": "index.js",
"description": "Databases course work template", "description": "Databases course work template",
"repository": "https://github.com/boldak/dis-edu", "repository": "http://139.162.162.130:3000/hasslesstech/edu-dis-labs",
"author": "Andrey Boldak <boldak.andrey@gmail.com>", "author": "Andrey Boldak <boldak.andrey@gmail.com>",
"license": "ECL 2.0", "license": "ECL 2.0",
"scripts": { "scripts": {
"test":"jest", "test": "jest",
"docs:api": "jsdoc2md src/**/*.js > docs/api/README.md", "docs:api": "jsdoc2md src/**/*.js > docs/api/README.md",
"docs:dev": "npm run docs:api && npx vuepress dev docs", "docs:dev": "npm run docs:api && npx vuepress dev docs",
"docs:build": "npm run docs:api && npx vuepress build docs", "docs:build": "npm run docs:api && npx vuepress build docs",
@@ -23,5 +23,4 @@
"jest": "^27.1.0", "jest": "^27.1.0",
"jsdoc-to-markdown": "^7.0.1" "jsdoc-to-markdown": "^7.0.1"
} }
} }
Regular → Executable
+2 -2
View File
@@ -14,12 +14,12 @@ cd docs/.vuepress/dist
git init git init
git add -A git add -A
git commit -m 'deploy' git commit -m '[automated]: pushing regenerated documentation'
# if you are deploying to https://<USERNAME>.github.io # if you are deploying to https://<USERNAME>.github.io
# git push -f git@github.com:boldak/<USERNAME>.github.io.git master # git push -f git@github.com:boldak/<USERNAME>.github.io.git master
# if you are deploying to https://<USERNAME>.github.io/<REPO> # if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f https://github.com/boldak/dis-edu.git master:gh-pages git push -f http://10.1.1.1:3000/hasslesstech/edu-dis-labs master:gh-pages
cd - cd -