diff --git a/README.md b/README.md index d2da3b9..c9eb79d 100644 --- a/README.md +++ b/README.md @@ -323,7 +323,7 @@ Since storybook-django relies on a Django backend, in this context the Storybook 2. Configure a Django server to serve the static export 3. Host the Django server -This repository’s `demo` site has an example of how to do this, serving the static files with Django’s `django.views.static.serve`, and hosting in Heroku. +This repository’s `demo` site has an example of how to do this, serving the static files with Django’s `django.views.static.serve`. ## Common questions diff --git a/app.json b/app.json deleted file mode 100644 index 00313d0..0000000 --- a/app.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "addons": [], - "buildpacks": [ - { - "url": "heroku/nodejs" - }, - { - "url": "heroku/python" - } - ], - "description": "", - "env": {}, - "formation": { - "web": { - "quantity": 1 - } - }, - "name": "storybook-django", - "scripts": {}, - "stack": "heroku-20" -} diff --git a/package.json b/package.json index f071f7b..6735c86 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Implement, document, and test UI components in isolation from your Django views", "author": "Torchbox", "license": "MIT", - "homepage": "http://storybook-django.herokuapp.com/", + "homepage": "https://github.com/torchbox/storybook-django", "main": "src/storybook-django.js", "module": "src/storybook-django.js", "sideEffects": true, @@ -89,7 +89,6 @@ "lint": "npm run lint:js && npm run lint:format", "lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives .", "lint:format": "prettier --check '**/?(.)*.{md,css,scss,js,json,json5,ts,tsx,yaml,yml,vue}'", - "format": "prettier --write '**/?(.)*.{md,css,scss,js,json,json5,ts,tsx,yaml,yml,vue}'", - "heroku-postbuild": "npm run build -s" + "format": "prettier --write '**/?(.)*.{md,css,scss,js,json,json5,ts,tsx,yaml,yml,vue}'" } } diff --git a/runtime.txt b/runtime.txt deleted file mode 100644 index 250d1e3..0000000 --- a/runtime.txt +++ /dev/null @@ -1 +0,0 @@ -python-3.10.2