-
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.
feat(report): add Hugo for report and ci deployment
- Loading branch information
Showing
10 changed files
with
145 additions
and
7 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
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,3 @@ | ||
[submodule "resources/report/themes/hugo-book"] | ||
path = resources/report/themes/hugo-book | ||
url = https://github.com/alex-shpak/hugo-book |
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
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,3 @@ | ||
.hugo_build.lock | ||
public | ||
resources/_gen/** |
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,61 @@ | ||
# hugo server --minify | ||
|
||
baseURL = 'https://zucchero-sintattico.github.io/' | ||
title = 'Piper Kt' | ||
theme = 'hugo-book' | ||
|
||
# Book configuration | ||
disablePathToLower = true | ||
enableGitInfo = true | ||
|
||
# Needed for mermaid/katex shortcodes | ||
[markup] | ||
[markup.goldmark.renderer] | ||
unsafe = true | ||
|
||
[markup.tableOfContents] | ||
startLevel = 1 | ||
|
||
[menu] | ||
[[menu.after]] | ||
name = "Github" | ||
url = "https://github.com/zucchero-sintattico/piper-kt" | ||
weight = 100 | ||
|
||
[params] | ||
# (Optional, default light) Sets color theme: light, dark or auto. | ||
# Theme 'auto' switches between dark and light modes based on browser/os preferences | ||
BookTheme = 'light' | ||
|
||
# Set source repository location. | ||
# Used for 'Last Modified' and 'Edit this page' links. | ||
# BookRepo = 'https://github.com/zucchero-sintattico/piper-kt' | ||
|
||
# Enable "Edit this page" links for 'doc' page type. | ||
# Disabled by default. Uncomment to enable. Requires 'BookRepo' param. | ||
# Edit path must point to root directory of repo. | ||
# BookEditPath = 'resources/report' | ||
|
||
# Configure the date format used on the pages | ||
# - In git information | ||
# - In blog posts | ||
BookDateFormat = 'January 2, 2006' | ||
|
||
# (Optional, default true) Enables search function with flexsearch, | ||
# Index is built on fly, therefore it might slowdown your website. | ||
# Configuration for indexing can be adjusted in i18n folder per language. | ||
BookSearch = true | ||
|
||
# /!\ This is an experimental feature, might be removed or changed at any time | ||
# (Optional, experimental, default false) Enables portable links and link checks in markdown pages. | ||
# Portable links meant to work with text editors and let you write markdown without {{< relref >}} shortcode | ||
# Theme will print warning if page referenced in markdown does not exists. | ||
BookPortableLinks = true | ||
|
||
# /!\ This is an experimental feature, might be removed or changed at any time | ||
# (Optional, experimental, default false) Enables service worker that caches visited pages and resources for offline use. | ||
BookServiceWorker = true | ||
|
||
# /!\ This is an experimental feature, might be removed or changed at any time | ||
# (Optional, experimental, default false) Enables a drop-down menu for translations only if a translation is present. | ||
BookTranslatedOnly = false |
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,18 @@ | ||
--- | ||
title: Introduction | ||
type: docs | ||
--- | ||
|
||
# Piper Kt | ||
|
||
## Members | ||
|
||
- [Manuel Andruccioli](mailto:manuel.andruccioli@studio.unibo.it) | ||
- [Alessandro Mazzoli](mailto:alessandro.mazzoli9@studio.unibo.it) | ||
- [Tommaso Patriti](mailto:tommaso.patriti@studio.unibo.it) | ||
- [Luigi Borriello](mailto:luigi.borriello2@studio.unibo.it) | ||
|
||
## Scenario | ||
|
||
The project consists of creating a platform that enables real-time communication between users in various form, inspired by Discord. | ||
Piper-kt will offer the possibility of registration and access through a login system, allowing users to establish and manage social connections through friend requests. The platform will facilitate intra-user communication, with notifications for messages and management of friendships. Users will have the freedom to create and manage their own servers, with features for managing text and multimedia channels. It will be possible to send messages, participate in voice and video calls, and manage webcams and microphones within channels. In addition, server creators will be able to moderate them, removing unwanted members. |
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,13 @@ | ||
--- | ||
title: "Requirements" | ||
weight: 1 | ||
# bookFlatSection: false | ||
# bookToc: true | ||
# bookHidden: false | ||
# bookCollapseSection: false | ||
# bookComments: false | ||
# bookSearchExclude: false | ||
--- | ||
|
||
# Requirements | ||
|
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,6 @@ | ||
--- | ||
title: "Design" | ||
weight: 2 | ||
--- | ||
|
||
# Design |