Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesknelson/memamug-client
Memamug helps you remember faces. Written with React, Maxim & Rails.
https://github.com/jamesknelson/memamug-client
Last synced: 13 days ago
JSON representation
Memamug helps you remember faces. Written with React, Maxim & Rails.
- Host: GitHub
- URL: https://github.com/jamesknelson/memamug-client
- Owner: jamesknelson
- Created: 2015-06-22T03:19:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-21T12:03:18.000Z (over 9 years ago)
- Last Synced: 2023-11-07T17:18:21.620Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://www.memamug.com
- Size: 156 KB
- Stars: 109
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Memamug
An open-source app which helps you remember people you'd normally forget. See the live version at [memamug.com](http://www.memamug.com).
This app was built to demonstrate how to write a simple web-app, without resorting to a cliché to-do list. I'll be writing a number of tutorials to explain how to build this app, from creating the initial directory structure to deploying it live. Follow [@james_k_nelson](https://twitter.com/james_k_nelson) to keep updated.
## Getting Started
*If you haven't already, install and start [memamug-server](https://github.com/jamesknelson/memamug-server)*
Once you have the server installed, getting started only takes four lines in your favorite terminal app:
```
git clone [email protected]:jamesknelson/memamug-client.git
cd memamug-client
npm install
npm install -g gulp
```And then one final line each time you want to start the dev server, which watches for changes and makes the app available at http://localhost:9000/:
```
npm start
```## Deployment
Want to deploy to a server to show your friends? Run `gulp dist` to produce a deployment-ready copy in the `dist` directory.