Creating a new Panther client from scratch
- If you haven’t already done so, download and install Node. You’ll need version 6 or higher.
- Login to your Github account and create a new repository (e.g.
your-new-repo). - Open your terminal and
git clonethe Panther Starter Kit (coming soon). - Navigate into the cloned project directory.
- Run
git remote rm originto disconnect the cloned repository from the Panther Starter Kit remote repository. - Run
git remote add origin https://github.com/your-user-name/your-new-repo.git, substituting the URL for your repository’s URL. - Run
git push -u origin masterto push up the code. - Run
npm installto install the dependencies. - Run
npm startto start the Panther engine. - Once the build tasks have finished running, the website should automatically open in your web browser and the application should begin monitoring your files for changes.
- You can stop the process at any time by pressing
control+con your keyboard.
Congratulations! You should now have a working Panther client.
Take a look at the Configuring Panther page to learn more.