https://github.com/erickgnavar/tsung_demo
A simple plug based project to be tested using Tsung
https://github.com/erickgnavar/tsung_demo
elixir testing tsung
Last synced: about 14 hours ago
JSON representation
A simple plug based project to be tested using Tsung
- Host: GitHub
- URL: https://github.com/erickgnavar/tsung_demo
- Owner: erickgnavar
- Created: 2020-10-03T17:33:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-04T19:36:38.000Z (over 4 years ago)
- Last Synced: 2025-04-11T15:10:08.776Z (2 months ago)
- Topics: elixir, testing, tsung
- Language: Elixir
- Homepage: https://erick.navarro.io/blog/getting-started-with-tsung/
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TsungDemo
Simple plug based project to be tested using tsung
## Run it manually
The versions required are defined in `.tool-versions` and can be installed with `asdf install`
Once the required versions of elixir and erlang are installed we can execute the following steps to run the project:
```shell
# Install dependencies
mix deps.get# Run an interactive Iex session
iex -S mix
```## Run it using docker
To run this app using docker run the following command:
```shell
docker run -e PORT=4000 -p 4000:4000 erickgnavar/tsung_demo
```