https://github.com/monarc-project/monarc-project.github.io
Source code of the MONARC website.
https://github.com/monarc-project/monarc-project.github.io
cases cybersecurity governance monarc python security
Last synced: 4 months ago
JSON representation
Source code of the MONARC website.
- Host: GitHub
- URL: https://github.com/monarc-project/monarc-project.github.io
- Owner: monarc-project
- License: agpl-3.0
- Created: 2017-07-18T09:59:32.000Z (almost 9 years ago)
- Default Branch: source
- Last Pushed: 2025-10-27T14:05:53.000Z (8 months ago)
- Last Synced: 2025-10-27T16:08:22.983Z (8 months ago)
- Topics: cases, cybersecurity, governance, monarc, python, security
- Language: CSS
- Homepage: https://www.monarc.lu
- Size: 158 MB
- Stars: 2
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
MONARC website
==============
# Installation
```bash
$ git clone https://github.com/monarc-project/monarc-project.github.io
$ cd monarc-project.github.io/
$ poetry install
```
# Deployment
## Check and publish
You can directly push your changes, but it is preferable to first check locally:
```bash
$ # you can also use pipenv shell
# generation of the static website:
$ make html
# or test with the development server:
$ make devserver
```
In case if `make devserver` command fails, it can be replaced with:
```
# only once:
$ pip install invoke
$ invoke build
# to start dev server:
$ invoke serve
```
Once everything looks fine, publish the changes:
```bash
$ git commit -S -am ""
$ git push origin source
```
The website will be automatically generated thanks to GitHub Actions and the
result deployed on the MONARC GitHub Organization Pages
(available [here](https://www.monarc.lu)).