You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
501 B
31 lines
501 B
## Github Setup
|
|
### Setup account
|
|
git config --global user.name "your_username"
|
|
git config --global user.email johndoe@example.com
|
|
|
|
|
|
# first time
|
|
|
|
git init
|
|
|
|
git checkout -b main
|
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
|
|
|
git remote add origin https://hackethon.ai/hack/Sanju-15/aquaguardian.git
|
|
|
|
git push -u origin main
|
|
|
|
|
|
# already existing repo
|
|
|
|
## Running application
|
|
1. Clone App
|
|
```
|
|
git clone https://hackethon.ai/hack/Sanju-15/aquaguardian.git
|
|
cd aquaguardian
|
|
```
|
|
|
|
2. Run the live server. |