image uploader for the digital yacht club written in Chicken Scheme. See documentation.md for more info. The source code is public domain.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829
  1. # Moni's simple image hoster
  2. - written 27.11.2022
  3. Everything in this folder belongs to moni's little image hoster.
  4. It is written by Uhrenmacher for my dear friend Burden (or Moni).
  5. Everything in here is public domain, no rights reserved, under CC0.
  6. Do with it whatever you want.
  7. The official repository is here:
  8. https://git.lain.church/uhrenjunge/dyc_image_uploader
  9. ## File included in the project
  10. - data
  11. - data/users.db
  12. - data/posts.db
  13. - img
  14. - img/img{1-4}.jpg
  15. - main.scm
  16. - index.xhtml
  17. - documentation.md
  18. ### Data
  19. The data folder is where all the databases are placed in. You may not place anything but "data/users.db" and "data/posts.db" in it.
  20. ### data/users.db
  21. This file is a sqlite3 databases contaning all the users and the user's information (hashed password, number of posts).
  22. ### data/posts.db
  23. A list of every post on each profile.
  24. ### img
  25. folder for the images uploaded
  26. ### img/img{1-4}.jpg
  27. Images used for testing and development. Those should be removed as soon as the code is used in production.
  28. ### main.scm
  29. in writing