Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.37 KB

CONTRIBUTING.MD

File metadata and controls

65 lines (48 loc) · 1.37 KB

Angor

Developer README


Table of Contents

  1. Installation
  2. Contributing
  3. Running Cypress

Installation

To run Angor locally, you need to download .NET 8.0.4 or higher. You can download it from here.

Steps:

  1. Clone the repository:

    $ git clone https://github.com/block-core/angor.git
  2. Navigate to the project directory:

    $ cd angor/src/Angor/Client
  3. Build the project:

    $ dotnet build
  4. Run the project:

    $ dotnet run

Now you should have Angor running locally at http://localhost:5062/.

Contributing

We welcome contributions to the codebase. Please maintain the same code style as the existing code.

Running Cypress

To run Cypress, follow these steps:

  1. Install dependencies:

    $ npm install
  2. Ensure that Angor is running locally.

  3. Open Cypress:

    $ npm run cypress:open
  4. If you want to run the test in your terminal you can also Run cypress in headless mode:

    $ npm run cypress:run