A PWA for video production - screencasts, voice overs and camera integration. Zero install app (i.e. no admin rights) with a clean UI. No bloats, malwares or ads!
This web app s hosted at : https://capturio.soumikmukherjee.dev. To use it, just open the app in a browser. PWAs can be installed on the desktop as well, see this support article by Google, on how.
More release channels targetted for future, e.g. windows store etc.
Simply set the sources using the buttons at the top & center, Mic, Screen and Cam (camera integration coming soon!). Use the Record and Stop buttons (on the left) to control recording. Once you are done the Download button on the right should able to give you the recording as a webm file.
- Before anything else, you would need:
- Any editor, I use
VS Code. Highly recommend getting and using the following extensions: nodeandyarn
- Any editor, I use
- Clone this repo with
gitandcheckoutto the rightbranch - Run the command
yarnfrom project root directory to install all dependencies. - You are now ready to run the different projects inside the repo.
First, please familiarise yourself with the repo structure. This is a lerna monorepo, with two projects within:
- A
gatsby+reactweb app, located inpackages/webapp - A
react+storybookUI component library, located inpackages/ui-components
The component library comes bundled with storybook. You can run the storybook server and check live edits to any components that you do.
To run the storybook server, execute from the repo root dir
$ yarn run:ui-storiesTo run a development server with the gatsby app, execute from the repo root dir
$ yarn develop:webappTo build the gatsby web app, i.e. production build (this creates the html, css and js bundles in the packages/webapp/public folder), execute from the repo root dir
$ yarn build:webappYou can also run a local server to check out your production build, with
$ yarn serve:webappThe project supports a Google Cloud Build based CICD pipeline to deploy to Firebase hosting. The cloudbuild.yaml file models the pipeline.
To trigger the pipeline, do the following:
- Use
yarn versionto bump the version numbers. Followsemver. You should have the following setup before doing this as well
$ yarn config set version-sign-git-tag true (Optional, only if you want signed tags)
$ yarn config set version-tag-prefix "v"
$ yarn config set version-git-tag true then do (e.g. below if you are releasing a minor version update)
$ yarn version --minorThis will bump the minor version number on your package.json (root) and also create a git tag (an annotated one).
- Push the git tag to remote, using
$ git push origin v1.1.0Every PR should refer a template (one of 3 in this repo). See this comment for details on how and which template to use
Happy coding! 👍