Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philipsahli/django-fastapp
https://github.com/philipsahli/django-fastapp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/philipsahli/django-fastapp
- Owner: philipsahli
- License: mit
- Created: 2013-11-25T17:15:02.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-13T12:37:26.000Z (over 10 years ago)
- Last Synced: 2024-04-17T09:03:13.287Z (9 months ago)
- Language: JavaScript
- Homepage: http://sahli.net/software/django-fastapp/
- Size: 1.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==============
django-fastapp
==============django-fastapp is a reusable Django app which lets you prototype apps in the browser with client- and server-side elements.
Installation
------------Add fastapp to settings.INSTALLED_APPS
::
"fastapp",
Install required modules
::
pip install django-fastapp
Add fastapp to your urls.py
::
("^fastapp/", include("fastapp.urls")),
Realtime Client-Server communication (http://pusher.com/)
::
# pusher for websockets
PUSHER_KEY = "xxxxxxx"
PUSHER_SECRET = "xxxxxx"
PUSHER_APP_ID = "xxxxxx"Storages
--------Dropbox
~~~~~~~Add DROPBOX_CONSUMER_KEY and DROPBOX_CONSUMER_SECRET to your settings.py
::
# django-fastapp
DROPBOX_CONSUMER_KEY = "xxxxxx"
DROPBOX_CONSUMER_SECRET = "xxxxxx"
DROPBOX_REDIRECT_URL = "http://localhost:8000"Usage
------ Read https://sahli.net/software/django-fastapp
- Visit http://localhost/fastapp