You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB

  1. {
  2. "name": "doccano",
  3. "description": "Open source text annotation tool for machine learning practitioner.",
  4. "keywords": ["Python", "Machine Learning", "Annotation"],
  5. "website": "https://doccano.herokuapp.com/",
  6. "repository": "https://github.com/doccano/doccano",
  7. "logo": "https://github.com/doccano/doccano/wiki/images/doccano.png",
  8. "success_url": "/",
  9. "env": {
  10. "ADMIN_USERNAME": {
  11. "description": "The user name for the admin account."
  12. },
  13. "ADMIN_EMAIL": {
  14. "description": "The contact email address for the admin account."
  15. },
  16. "ADMIN_PASSWORD": {
  17. "description": "The password for the admin account."
  18. },
  19. "SECRET_KEY": {
  20. "description": "The value to use as the Django secret key.",
  21. "generator": "secret"
  22. },
  23. "GOOGLE_TRACKING_ID": {
  24. "description": "Google Analytics tracking id.",
  25. "required": false,
  26. "value": ""
  27. },
  28. "DJANGO_SETTINGS_MODULE": {
  29. "description": "Django Settings Module. You don't have to change this.",
  30. "required": true,
  31. "value": "config.settings.heroku"
  32. }
  33. },
  34. "stack": "container",
  35. "scripts": {
  36. "postdeploy": "sh /doccano/tools/heroku.sh"
  37. },
  38. "addons": [
  39. {
  40. "plan": "heroku-postgresql:mini"
  41. }
  42. ]
  43. }