Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@ This is project is structured so that the developer can choose to set it up with
<br />

# **PROJECT SETUP**
## **Cloning Project**
Clone this repo and change directory into the project root folder by running the following commands:

```bash
git clone https://github.com/KanaryStack/aliascheck.git
```
>NOTE:
>If you have setup an SSH connection to this repo, you can run this command instead:
>```bash
>git clone git@github.com:KanaryStack/aliascheck.git
>```

and go to the project root folder like so:
```bash
cd aliascheck
```
then switch to last stable branch with Flask backend:
```bash
git checkout 940bc4d36f8a34e65373e080024cf98d97b4cf52

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will recommend we only merge(probably will need further update) after a Node PR is merged to master.

Suggested change
git checkout 940bc4d36f8a34e65373e080024cf98d97b4cf52
git checkout main

This will allow us to give specific contribution/setup instruction to the contributor/user.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once the PR is merged, we can update this README apprpriately #26

```

## **Starting Up the Project**
## **With Docker Compose**
To start the project using Docker, even from scratch, run the following command:

Expand Down