This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # New Project Setup and Helpers | |
| Steps to create a fresh Project : | |
| Create a folder in your local. | |
| Open cmd --> type "code ." and press enter . | |
| Visual studio code application will open(If it is * installed on the system) | |
| Add on: Plugin -->playwright(by micorsoft)-->download | |
| CTRL+SHIFT+P--->COMMAND PANEL | |
| install playright | |
| select browsers and OK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # file location: ~/Brewfile | |
| # This file is used along with the `brew bundle` command to ensure that required packages and apps are installed. | |
| # Also can be used to ensure that any package/apps that were installed as experimentation are uninstalled from the system. | |
| # If you are starting such a file on a machine where you have already installed some apps using brew, then use `brew bundle dump` to create this file and avoid starting from scratch | |
| # For a more detailed explanation of the philosophy/reasoning behind this file, please see https://openfolder.sh/macos-migrations-with-brewfile | |
| # List all casks that are outdated (and which have version marked as 'latest') | |
| # alias bcg='brew outdated --greedy' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # This script can be used to setup a macos machine based on Vijay's configurations. As of now, this script is idempotent and will restore your local setup to the same state if run multiple times. | |
| # If you have the same files already present, it will prompt you whether to override or not | |
| # file location: <anywhere> (just need to invoke it from that location) | |
| # You can run this script using this command: | |
| # curl -L https://gist.github.com/Karthikkumarjain/ed463a8b3b223a42d3b9570372ba4026/raw -o fresh-install.sh; chmod +x ./fresh-install.sh; ./fresh-install.sh | |