Skip to content

Commit

Permalink
Merge pull request #57 from jfilhoGN/42-create-social-medias
Browse files Browse the repository at this point in the history
42 create social medias
  • Loading branch information
jfilhoGN authored Dec 12, 2024
2 parents 9470b23 + d62fba6 commit 1eb560e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
37 changes: 24 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

<div align="center">

| Code Coverage | Documentation | Community |
|---------------|---------------|-----------|
| [![codecov](https://codecov.io/gh/jfilhoGN/Stressify.jl/graph/badge.svg?token=JMUM3ITLXK)](https://codecov.io/gh/jfilhoGN/Stressify.jl) | [![Documentation Status](https://readthedocs.org/projects/stressifyjl/badge/?version=latest)](https://stressifyjl.readthedocs.io/en/latest/) | [![Gitter](https://img.shields.io/gitter/room/DAVFoundation/DAV-Contributors.svg?style=flat-square)](https://app.gitter.im/#/room/#stressify:gitter.im) |
| Code Coverage | Documentation | Community | Social |
|---------------|---------------|-----------|--------|
| [![codecov](https://codecov.io/gh/jfilhoGN/Stressify.jl/graph/badge.svg?token=JMUM3ITLXK)](https://codecov.io/gh/jfilhoGN/Stressify.jl) | [![Documentation Status](https://readthedocs.org/projects/stressifyjl/badge/?version=latest)](https://stressifyjl.readthedocs.io/en/latest/) | [![Gitter](https://img.shields.io/gitter/room/DAVFoundation/DAV-Contributors.svg?style=flat-square)](https://app.gitter.im/#/room/#stressify:gitter.im) | [![X Badge](https://img.shields.io/badge/follow-%40Stressify-blue?style=flat-square&logo=x)](https://x.com/Stressifyjl) |

</div>

Expand All @@ -33,17 +33,28 @@ Ensure you have [Julia](https://julialang.org/downloads/) installed on your syst

### Steps

1. Clone this repository:
```bash
git clone https://github.com/jfilhoGN/StressifyPerformanceTest.git
cd StressifyPerformanceTest
```
2. Install required dependencies:
```julia
using Pkg
Pkg.instantiate()
```
1. In Julia REPL:
```bash
using Pkg
Pkg.add("Stressify")
```
After installation in your code:

```julia
using Stressify

#execute for the one VU for one iteration
Stressify.options(
vus = 1,
iterations = 1,
duration = nothing
)

results = Stressify.run_test(
Stressify.http_get("https://httpbin.org/get"),
)

```
---

## 🛠 Usage
Expand Down
2 changes: 2 additions & 0 deletions docs/source/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.. _Stressify: https://github.com/jfilhoGN/Stressify.jl/tree/main/examples
.. _Documentation: https://stressifyjl.readthedocs.io/en/latest/
.. _Community: https://app.gitter.im/#/room/#stressify:gitter.im
.. _X(Twitter): https://x.com/Stressifyjl

User Guide
==========
Expand Down Expand Up @@ -32,3 +33,4 @@ In this links you can find more information about Stressify, enter in our commun
- `Stressify`_
- `Documentation`_
- `Community`_
- `X(Twitter)`_

0 comments on commit 1eb560e

Please sign in to comment.