Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitodl/open-widget-sample-app
a django app that demonstrates how to use the open-widget-framework
https://github.com/mitodl/open-widget-sample-app
Last synced: 6 days ago
JSON representation
a django app that demonstrates how to use the open-widget-framework
- Host: GitHub
- URL: https://github.com/mitodl/open-widget-sample-app
- Owner: mitodl
- License: bsd-3-clause
- Created: 2018-10-16T19:32:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T13:20:22.000Z (about 2 months ago)
- Last Synced: 2024-10-29T16:02:36.697Z (about 2 months ago)
- Language: JavaScript
- Size: 46.9 KB
- Stars: 0
- Watchers: 25
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# open-widget-sample-app
A sample app to demonstrate, develop and test the open widget framework (https://github.com/mitodl/open-widget-framework).
## Installation
pip install the `open_widget_framework` django package:
```bash
pip install open_widget_framework
```npm install the `open-widget-framework` npm module:
```bash
npm install @zagaran/open-widget-framework
```Install other dependencies with `pip-compile` -> `pip-sync` and `npm install`
Compile the js with:
```bash
npm run build
```and then collect the static files with
```bash
python manage.py collectstatic
```## Running Locally
To run application locally, use:
```bash
python manage.py runserver
```