StamusNetworks / scirius

Scirius is a web application for Suricata ruleset management and threat hunting.
GNU General Public License v3.0
626 stars 150 forks source link

404 Error on static files #129

Closed acalabrigo closed 6 years ago

acalabrigo commented 6 years ago

While trying to run the Django test server, I'm getting a 404 error when Django looks for styles.css and scirius-bundle.js in the static files. These files do not appear to be in the /static directory. Wondering how to resolve this?

regit commented 6 years ago

Looks like you are using git master that is currently under heavy work. I need to update the README.rst to include new information.

To do short you need to run webpack in the base directory to get these files generated.

To install:

sudo apt-get install npm
sudo npm install -g npm@latest
npm install
sudo npmg install -g webpack

Then run webpack:

webpack
acalabrigo commented 6 years ago

Thanks for the response. I didn't realize how in-progress the master is, so I'll go back to the last release instead.