This is a repo of the Capstone project at the Innopolis University - https://capstone.innopolis.university/
Table of contents
Throughout the project, you will be required to write progress reports. These reports will be published on the Capstone project website. To contribute to the website, you will need to follow these steps:
- On the first week:
- One of the team member (e.g.
john5000
) should fork this repository under the name of the team (e.g.dream-team
). This will create a copy of the repository under the namejohn5000/dream-team
. - To edit reports, you can use online GitHub Markdown editor (easy way) OR run this website locally (more complex way)
- Create a folder with your group name (same as the name of the forked repository e.g.
dream-team
) incontent/docs/$YEAR/
(e.g.content/docs/$YEAR/dream-team
). - Create
_index.md
file in your group folder (e.g.content/docs/2025/dream-team/_index.md
) with the following content:--- bookCollapseSection: true title: "Dream Team" ---
- One of the team member (e.g.
- All your progress reports should be stored in
content/docs/$YEAR/$TEAM
and should be named asweekX.md
(e.g.content/docs/2025/dream-team/week1.md
).- Your report should contain all the parts listed in the weekly tasks in the course description. The absence of any parts will lead to a decrease in grade.
- If you need to add an image or file, add this file to your personal repository (NOT the current repository with
reports), and specify a direct link to it in your report (the link must start with
https://raw.githubusercontent.com/IU-Capstone-Project-$YEAR
). - For images, you can use the syntax

(e.g.
. - !!! Note that if you create/modify/delete any other files other than your report, you will not pass the CI/CD pipeline, your changes will not be merged and your report grade will be 0.
- After the weekly report is done, you will need to properly submit them via Pull Request so that no merge conflicts
happen.
- Open your github repo (e.g. https://github.com/john5000/dream-team)
- Click on
Contribute
button - Click on
Open pull request
- Make sure that the base repository is
IU-PR/Capstone_project
and the base branch ismaster
- Make sure that the head repository is your repository name (e.g.
john5000/dream-team
) and the head branch isyour-branch-name
- Name your pull request in a format
dream-team: Week X
- Once done, press
Create pull request
- Make sure that the CI/CD pipeline has passed. If not, fix the errors and push the changes again to your branch (you don't need to create a new pull request, just push the changes to your branch)
- You can preview your changes by clicking on
Deploy preview
link provided by netlify bot in the pull request comments - Done! Admins will review your work and merge your changes into the main repo soon!
-
Install latest version of Hugo on your local machine. Also, make sure you have a code editor installed. VSCode is recommended, but you may use the one you prefer.
-
Clone the forked repository with submodules to your local machine using
git clone --recursive https://github.com/john5000/dream-team
- To start the website locally, run
hugo server --minify --theme=hugo-book
- The last line in the terminal output should look like
Web Server is available at http://localhost:port/ (by default: http://localhost:1313/)
- Visit
http://localhost:port
in your browser to access your local instance of the website. Now all of you changes in the website's source code should be propagated automatically.
After you feel you have made enough changes, run
git add .
to stage all changes, then
git commit -m "Your very informative progress report that describes the changes you've made"
to commit your changes to the local repository. Finally, run
git push
to push your changes to the remote repository or
git push --set-upstream origin your-branch-name
if you are pushing for the first time.
This blog template uses a handful of shortcodes. Shortcode (in a nutshell) is "mark" inside your markdown code that enables certain features within its code block. For example, you can define a codeblock of LaTeX code that renders LaTeX formulas. You can also define a codeblock that describes a structure of a graph. Below are example of these two.
How to write in LaTeX:
{{<katex>}}
your latex formula
{{</katex>}}
This produces an inline formula. If you want to center your formula, use display
property like so:
{{<katex display>}}
your centered latex formula
{{</katex>}}
How to create graphs:
- Take a look at Mermaid syntax
- Pick a graph you want to use
- Write necessary code
Ex:
{{<mermaid>}}
gitGraph
commit
commit
branch develop
commit
commit
commit
checkout main
commit
commit
{{</mermaid>}}
will be rendered as
gitGraph
commit
commit
branch develop
commit
commit
commit
checkout main
commit
commit
Refer to Mermaid documentation for examples.
To embed a PDF file, use the following shortcode:
{{< embed-pdf
url="https://raw.githubusercontent.com/IU-Capstone-Project-2025/dream-team/refs/heads/master/reports/some-file.pdf" >}}
This project's shortcodes and their descriptions can be found in layouts/shortcodes
. They all use the same syntax:
{{<shortcode>}}
...stuff/..
{{</shortcode>}}
Try them out if you think they are useful in your progress reports.