Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tyrw/cloudinary_angular_demo
- Owner: tyrw
- Created: 2014-07-24T19:21:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-28T19:36:04.000Z (over 10 years ago)
- Last Synced: 2023-03-24T08:46:12.224Z (over 1 year ago)
- Topics: angular, cloudinary
- Language: JavaScript
- Size: 160 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```