MISP website (jekyll-based)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Alexandre Dulaunoy 9f99997d20
chg: [galaxy] updated
2 일 전
.well-known add security.txt file to website 4 년 전
_includes chg: [links] openapi html page 2 달 전
_layouts chg: [template] add authors 10 달 전
_pages chg: [security] add CVE-2021-36212 in the security page 2 주 전
_posts chg: [blog] add missing CVE 2 주 전
assets chg: [warning-lists] screenshot added 3 주 전
compliance Date fixed 3 년 전
images Fix css 5 년 전
modules chg: [doc] modules list added 3 년 전
news chg: [blog] Added RSS icon and link on news page 2 년 전
org-logos chg: [orgs-logo] X-ISAC added 1 년 전
.gitignore Stopped tracking _site 7 년 전
Changelog.txt chg: [changelog] v2.4.146 release 3 주 전
Gemfile sitemap added to Gemfile 4 년 전
LICENSE.txt Init 7 년 전
PyMISP-Changelog.txt chg: [changelog] PyMISP 2.4.106 2 년 전
README.md Add instructions on how to compile local version 6 달 전
Rakefile Add doc 5 년 전
VERSION.json 2.4.59 released 5 년 전
_config.yml chg: [updates] sync all files 2 년 전
best-practices-in-threat-intelligence.html chg: [doc] Update to latest best practices document 2 년 전
best-practices-in-threat-intelligence.pdf chg: [doc] Update to latest best practices document 2 년 전
build.sh fix: add well-known dir to _site 4 년 전
favicon.ico MISP favicon added 4 년 전
features.html chg: [doc] modules doc added 2 년 전
galaxy.html chg: [galaxy] updated 2 일 전
galaxy.pdf chg: [galaxy] updated 2 일 전
index.html Make landing page responsive 4 달 전
left-sidebar.html Add baseurl to src and href attributes 6 년 전
misp-dashboard-Changelog.txt chg: [doc] misp-dashboard changelog added 3 년 전
no-sidebar.html Add baseurl to src and href attributes 6 년 전
objects.html chg: [objects] updated 6 달 전
objects.pdf chg: [objects] updated 6 달 전
right-sidebar.html Add baseurl to src and href attributes 6 년 전
taxonomies.html chg: [taxonomies] updated 4 달 전
taxonomies.pdf chg: [taxonomies] updated 4 달 전
two-sidebar.html Add baseurl to src and href attributes 6 년 전

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