Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/scottyrichardson/mossly.io-frontend

Mossly.io frontend website files. Deployed via workflow to AWS AppRunner sitting behind a Cloudfront distribution.
https://github.com/scottyrichardson/mossly.io-frontend

apprunner aws cloudfront css frontend gulp html mossly nodejs

Last synced: 10 days ago
JSON representation

Mossly.io frontend website files. Deployed via workflow to AWS AppRunner sitting behind a Cloudfront distribution.

Awesome Lists containing this project

README

        

# Tooling setup

Project requires Node and Gulp to build.

Install Node. Then use NPM to install Gulp:

npm install -g gulp

# Environment setup

Install project dependencies with:

npm install

# Building the project

## Dev environment

Build the project with:

gulp

or:

gulp dev

## Prod environment

Build the project with

gulp prod

# Updating project packages

Install npm-check-updates globally with:

npm install -g npm-check-updates

Then check for latest project dependencies and set versions to package.json with:

ncu -u

Finally, update the lockfile and install the new versions with:

npm install