MISP website (jekyll-based)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
iglocska c04fcd3368
2.4.154 release added
1 year ago
.well-known add security.txt file to website 5 years ago
_includes chg: [footer] fix gitter.im link - fix #57 2 years ago
_layouts chg: [template] add authors 3 years ago
_pages Merge branch 'main' of github.com:MISP/misp-website into main 1 year ago
_posts 2.4.154 release added 1 year ago
assets 2.4.154 release added 1 year ago
compliance Date fixed 5 years ago
images Fix css 7 years ago
modules chg: [doc] modules list added 4 years ago
news chg: [blog] Added RSS icon and link on news page 4 years ago
org-logos chg: [orgs-logo] X-ISAC added 3 years ago
.gitignore Best practices book added 5 years ago
Changelog chg: [updates] latest updates 1 year ago
Changelog-PyMISP.txt chg: [changelog] released for v2.4.152 1 year ago
Changelog-misp-galaxy.txt chg: [changelog] released for v2.4.152 1 year ago
Changelog-misp-modules.txt chg: [changelog] released for v2.4.152 1 year ago
Changelog-misp-objects.txt chg: [changelog] released for v2.4.152 1 year ago
Changelog-misp-taxonomies.txt chg: [changelog] released for v2.4.152 1 year ago
Changelog-misp-warninglists.txt chg: [changelog] released for v2.4.152 1 year ago
Changelog.txt chg: [updates] latest updates 1 year ago
Gemfile sitemap added to Gemfile 6 years ago
LICENSE.txt Best practices book added 5 years ago
PyMISP-Changelog.txt chg: [changelog] PyMISP 2.4.106 4 years ago
README.md Add instructions on how to compile local version 2 years ago
Rakefile Best practices book added 5 years ago
VERSION.json Best practices book added 5 years ago
_config.yml chg: [updates] sync all files 4 years ago
best-practices-in-threat-intelligence.html chg: [doc] Update to latest best practices document 4 years ago
best-practices-in-threat-intelligence.pdf chg: [doc] Update to latest best practices document 4 years ago
build-changelog.sh chg: [script] typo fixed 1 year ago
build.sh fix: add well-known dir to _site 5 years ago
favicon.ico Best practices book added 5 years ago
features.html chg: [doc] modules doc added 4 years ago
galaxy.html chg: [galaxy/objects] updated 1 year ago
galaxy.pdf chg: [galaxy/objects] updated 1 year ago
index.html Make landing page responsive 2 years ago
left-sidebar.html Add baseurl to src and href attributes 8 years ago
misp-dashboard-Changelog.txt chg: [doc] misp-dashboard changelog added 5 years ago
no-sidebar.html Add baseurl to src and href attributes 8 years ago
objects.html chg: [galaxy/objects] updated 1 year ago
objects.pdf chg: [galaxy/objects] updated 1 year ago
right-sidebar.html Add baseurl to src and href attributes 8 years ago
taxonomies.html Merge branch 'main' of github.com:MISP/misp-website into main 1 year ago
taxonomies.pdf Merge branch 'main' of github.com:MISP/misp-website into main 1 year ago
two-sidebar.html Add baseurl to src and href attributes 8 years ago

README.md

MISP Website

This is the repository of MISP website. The current online version of this portal can be found at misp-project.org.

Compiling a local version of the website

The MISP website is based on Jekyll, a static site generator. If you plan on contributing major changes to the website, it is important to have a local version, so as to test your changes.

To compile a local version of the website, run the following commands in a terminal:

  1. Install all Jekyll and its prerequisites, including the bundler gems.

  2. Clone the misp-website repository

    git clone https://github.com/MISP/misp-website.git
    
  3. Change into your new directory

    cd misp-website
    
  4. Install missing gems:

    bundle install
    
  5. Build the site and make it available on a local server.

    bundle exec jekyll serve --watch
    

    Only include the --watch flag if you want Jekyll to watch for changes to the website’s files, such as you writing and saving a new blog post or webpage, and to include these changes on refreshing your web browser.

  6. To preview your site in your web browser, navigate to http://localhost:4000.

How to deploy the MISP website

rake2.0 -f Rakefile generate
rake2.0 -f Rakefile publish