Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/scottyrichardson/mossly.io-frontend
- Owner: scottyrichardson
- Created: 2024-12-06T21:01:38.000Z (28 days ago)
- Default Branch: main
- Last Pushed: 2024-12-24T15:33:49.000Z (11 days ago)
- Last Synced: 2024-12-24T15:49:23.497Z (11 days ago)
- Topics: apprunner, aws, cloudfront, css, frontend, gulp, html, mossly, nodejs
- Language: CSS
- Homepage: https://mossly.io
- Size: 1.97 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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