https://github.com/andyduong1920/ex_marketer
An Advertising - Reports build on Elixir and Phoenix
https://github.com/andyduong1920/ex_marketer
elixir elixir-lang elixir-phoenix phoenix phoenix-framework
Last synced: 8 months ago
JSON representation
An Advertising - Reports build on Elixir and Phoenix
- Host: GitHub
- URL: https://github.com/andyduong1920/ex_marketer
- Owner: andyduong1920
- Created: 2020-07-13T04:26:14.000Z (almost 6 years ago)
- Default Branch: development
- Last Pushed: 2023-01-06T12:13:46.000Z (over 3 years ago)
- Last Synced: 2025-01-20T14:53:52.481Z (over 1 year ago)
- Topics: elixir, elixir-lang, elixir-phoenix, phoenix, phoenix-framework
- Language: Elixir
- Homepage: https://ex-marketer.herokuapp.com/
- Size: 2.13 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

## Setup
1/ Install Docker
2/ Install Elixir and Erlang
3/ Fetch dependecies
```bash
mix deps.get
```
4/ Boostrap the environment
```bash
bin/envsetup.sh
```
## Start the Phoenix server
```bash
mix phx.server
```
The Web app will run on `localhost:4000`
## Live version
https://ex-marketer.herokuapp.com/
## Test
1/ Install `chromedriver`
```bash
brew cask install chromedriver
```
2/ Running test
```bash
mix test # with Chrome Headless browser
CHROME_HEADLESS=false mix test # with Chrome browser
```