This guide will help you set up the project environment and get started with development.
-
Install project dependencies:
npm install
-
Run the prepare script to set up the project:
npm run prepare
-
Start the project:
npm start
If you're starting a new project, follow these steps to set up Git:
-
Initialize a new Git repository:
git init
-
Create and switch to the main branch:
git checkout -b main
-
Add all files to the staging area:
git add .
-
Commit the changes:
git commit -m 'Initial commit'
-
Set the remote origin (replace
<repository_url>
with your repository URL):git remote add origin <repository_url>
-
Push the changes to the main branch:
git push -u origin main
Now your project is set up and ready for development!