valorad / wcnexus.com

wc's personal website v3

Home Page:https://www.wcnexus.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Stars

wcnexus

wcnexus is wc's personal website as nexus.

(==🌟== Check out v4-dev branch for the latest wcnexus looks and feels!)

wcnexus v3 is powered by nodejs, with Angular5 at the front, and koa at the back. The mighty angular-cli has been substituted by a dedicated webpack since version 3.

Prerequisites

  • If deploy via docker:

    • Docker > 17.03
  • Manually deploy:

    • node.js > 6.9.0
    • (optional) nginx
    • (optional) pm2

Deployment

  • Via Docker:

    • Run the docker container
    docker run -d -p 3000:3000 \  
      --name wcnexus.com-c1
      -e EXEC_USER=$USER -e EXEC_USER=$UID \
      -v /path/to/your/server/config:/dist/server/config \
      -v /path/to/your/server/static:/dist/server/static \
      valorad/wcnexus.com
    • (optional) Then build and deploy your own nginx image.
  • Manually:

    • Download release dist to your server, and head over to that folder you extracted files to.
    • npm install or yarn install to collect node modules.
    • Fire it up. If you just would like to try it out, you just simply now go with node server/wcnexus. You may then navigate to http://localhost:3000. If deploying on a production server is your case, then you may continue.
    • Properly configure your nginx.
    • pm2 is recommended to hold up your node.js app. Running pm2 start server/wcnexus will do the trick.
  • Visit http://example.com:80 and you are good to go.

Nginx Example Config:

# Run in a docker container
docker run -d \ 
-p 80:80 -p 443:443 \
--name nginx-c1 \
-v /path/to/conf.d:/etc/nginx/conf.d \
-v /path/to/site/www/:/www \
nginx:mainline-alpine
  # default.conf
  # OS: Alpine Linux 3.7
  server {
      listen       80;
      server_name  www.wcnexus.com;
      charset utf-8;
      location / {
          proxy_pass http://127.0.0.1:3000;
          proxy_http_version 1.1;
          proxy_set_header Upgrade $http_upgrade;
          proxy_set_header Connection 'upgrade';
          proxy_set_header Host $host;
          proxy_cache_bypass $http_upgrade;
      }
    ...
  }

Development

npm run xxx

in which xxx being:

- dev compile start
front serve:c(Webpack-dev-server) build:c(Webpack) N/A
back N/A build:s(Webpack) start:s (koa only)
post N/A build:p(node) N/A
together N/A build(Webpack) start (koa)

Unit Testing

To execute the unit tests via Karma, run:

npm run test

Code scaffolding

Copy and paste the dummy module.

License

MIT

About

wc's personal website v3

https://www.wcnexus.com

License:MIT License


Languages

Language:HTML 26.9%Language:TypeScript 26.6%Language:JavaScript 21.2%Language:SCSS 21.0%Language:CSS 3.5%Language:Shell 0.7%