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
#!/bin/bash | |
# A script to clone the monorepo boilerplate and initialize it as a new project. | |
# Check that a project name was provided as an argument. | |
if [ -z "$1" ]; then | |
echo "Error: No project name provided." | |
echo "Usage: ./create-nextjs-project.sh <your-new-project-name>" | |
exit 1 | |
fi |