Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tyrw/cloudinary_angular_demo

Demo for Cloudinary with Angular.js and node runner
https://github.com/tyrw/cloudinary_angular_demo

angular cloudinary

Last synced: 7 days ago
JSON representation

Demo for Cloudinary with Angular.js and node runner

Awesome Lists containing this project

README

        

## Cloudinary demo for uploading and manipulating files

Allows you to run a local instance (via node.js) that will upload to your Cloudinary account and allow you to manipulate uploaded files.

1. clone repo
2. add file `app/js/config.js`:
```
$.cloudinary.config({
cloud_name: 'YOURCLOUDNAME',
api_key: 'YOURAPIKEY',
upload_preset: "YOURUPLOADPRESET"
})
```
3) Install and run
```
npm install
cd app
bower install
cd ..
node server.js
```