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.

48 lines
1.5 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_USER_NAME": {
  11. "description": "The user name for the admin account."
  12. },
  13. "ADMIN_CONTACT_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. "DEBUG": {
  29. "description": "Debug mode or not.",
  30. "required": false,
  31. "value": "False"
  32. },
  33. "ALLOW_SIGNUP": {
  34. "description": "Allow users to signup themselves or not",
  35. "required": false,
  36. "value": "True"
  37. }
  38. },
  39. "stack": "container",
  40. "scripts": {
  41. "postdeploy": "sh /doccano/tools/heroku.sh"
  42. },
  43. "addons": [
  44. {
  45. "plan": "heroku-postgresql:hobby-dev"
  46. }
  47. ]
  48. }