https://github.com/agrafix/meme-tutorial
Haskell: Material for Sommercampus 2017 Freiburg
https://github.com/agrafix/meme-tutorial
Last synced: about 1 month ago
JSON representation
Haskell: Material for Sommercampus 2017 Freiburg
- Host: GitHub
- URL: https://github.com/agrafix/meme-tutorial
- Owner: agrafix
- License: bsd-3-clause
- Created: 2017-08-02T09:51:23.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-02T14:17:04.000Z (almost 9 years ago)
- Last Synced: 2026-03-12T04:06:15.737Z (3 months ago)
- Language: Haskell
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meme-tutorial
## Setup
### Install libgd
* On Mac: `brew install gd`
* On Ubuntu: `sudo apt-get install libgd-dev`
### Clone the repo and setup Haskell
```bash
git clone https://github.com/agrafix/meme-tutorial.git
cd meme-tutorial
stack setup
stack build --fast
```
## Running
Note that this will not work for the stubs provided in the `master` branch as there's no implementation.
### Commandline
```bash
stack exec -- memegen in.jpg Hello World out.jpg
```
### Web Server
```bash
stack exec -- meme-tutorial-server 8080
```