forked from gonnagetbetter/Sup
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
91 changed files
with
13,976 additions
and
20 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,21 +1,16 @@ | ||
MIT License | ||
ECL 2.0 | ||
|
||
Copyright (c) 2021 boldak | ||
Copyright (c) 2021 Andrey Boldak | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
Licensed under the | ||
Educational Community License, Version 2.0 (the "License"); you may | ||
not use this file except in compliance with the License. You may | ||
obtain a copy of the License at | ||
https://opensource.org/licenses/ECL-2.0 | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an "AS IS" | ||
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
or implied. See the License for the specific language governing | ||
permissions and limitations under the License. |
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 |
---|---|---|
@@ -1,2 +1,69 @@ | ||
# edu-db-cw | ||
Database Basics. Course work. Template | ||
|
||
# Шаблон репозиторію для виконання курсової роботи з дисципліни "Бази даних" | ||
|
||
## Як використовувати | ||
|
||
В цьому репозиторії знаходиться шаблон для виконання курсової роботи. | ||
|
||
*Для виконання курсової роботи необхідно зробити ```fork``` цього репозіторію, склонувати вже власний репозіторій та розміщувати документацію у відповідних діректоріях ```./docs```. | ||
|
||
В цьому файлі необхідно вказати назву проекту. Коротку загальну характеристику | ||
проекту, контактні дані виконавця, посилання на репо співвиконавців(за необхідністю).* | ||
|
||
|
||
Шаблон публікування курсової роботи підготовлено з використанням [VuePress](https://vuepress.vuejs.org/), та стартера | ||
[FriendlyUser/vuepress-theme-cool-starter](https://github.com/FriendlyUser/vuepress-theme-cool-starter). | ||
|
||
Щоб опублікувати проект у Github Pages, налаштовуємо Github Pages (гілка ```gh-pages```), змінюємо файл ```./publish.sh``` | ||
|
||
```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 [email protected]: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 - | ||
|
||
``` | ||
|
||
Потім запускаємо | ||
|
||
```bash | ||
npm run publish | ||
``` | ||
|
||
Для відлагодження документації в локальному режимі запускаємо | ||
|
||
```bash | ||
npm run docs:dev | ||
``` | ||
|
||
Доступ до локально опублікованої версії [http://localhost:3030](http://localhost:3030) | ||
|
||
|
||
## Додаткова інформація | ||
|
||
- [Теми проєктів](./guidelines/themes.md) | ||
- [Методичні вказівки](./guidelines/guidelines.md) | ||
|
||
***Happy learning! Happy coding!*** |
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,2 @@ | ||
css | ||
dist |
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,39 @@ | ||
<template> | ||
<details><summary>{{title}}</summary>{{content}} </details> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'Details', | ||
props: { | ||
title: { | ||
type: String, | ||
default: "title" | ||
}, | ||
content: { | ||
type: String, | ||
default: "title" | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
|
||
<!-- Add "scoped" attribute to limit CSS to this component only --> | ||
<style scoped lang="styl"> | ||
details { | ||
border-radius: 3px; | ||
background: #EEE; | ||
} | ||
details summary { | ||
font-size: 17px; | ||
vertical-align: top; | ||
background: #333; | ||
color: #FFF; | ||
border-radius: 3px; | ||
/* padding: 5px 10px; */ | ||
padding: 5px 0px; | ||
outline: none; | ||
font-weight: bold; | ||
} | ||
</style> |
Oops, something went wrong.