Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cici

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cici

Yet another static website generator built on top of Vue 2 and Webpack

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source
home home

Seal

Yet another static website generator built on top of Vue 2 and Webpack

Usage

  • update the config.json with your personal information
  • start write something in markdown
  • then build your site
  npm run build # to generate your site in your defined directory
  npm run serve # to watch your site live

and you can also build and run it with docker like this.

  docker build -f devops/dockerfile.nginx -t seal .
  docker run -d -p 80:80 seal

then you can check your site at http://localhost now, normally I would like to deploy it to VPS use a small script.

## deploy.sh

ssh <$user>@<$host> <<END
  docker rmi \$(docker images --filter "dangling=true" -q --no-trunc)
  rm -rf /tmp/
  git clone git@github.com:metrue/Sira.git /tmp/seal
  git clone https://github.com/metrue/Seal /tmp/seal
  cd /tmp/seal
  docker build -f devops/dockerfile.nginx -t seal .
  docker run -d -p 80:80 seal
END

then put it into npm script, hit npm run deploy to do the deployment. That's it, have fun.

Showcase

Thanks

inspired by vue-ghpages-blog

LICENSE

MIT

Keywords

FAQs

Package last updated on 19 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc