📝 license
This commit is contained in:
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2025 Tomasita Cabrera
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
19
README.md
19
README.md
@@ -435,6 +435,21 @@ The app exposes a JSON API for programmatic access:
|
|||||||
- Favicon generated using [favicon.io](https://favicon.io)
|
- Favicon generated using [favicon.io](https://favicon.io)
|
||||||
- Example comics sourced from Boots and Her Buddies comic strip at [Comic Book Plus](https://comicbookplus.com/?cid=2561)
|
- Example comics sourced from Boots and Her Buddies comic strip at [Comic Book Plus](https://comicbookplus.com/?cid=2561)
|
||||||
|
|
||||||
## License
|
## License & Content Ownership
|
||||||
|
|
||||||
[Add your license here]
|
This software is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.
|
||||||
|
|
||||||
|
### Your Comics Are Yours
|
||||||
|
|
||||||
|
The Sunday Comics software is open source and free to use, but **any comics, artwork, and content you create and publish using this platform remain your intellectual property**. The software license does not grant any rights to your creative work.
|
||||||
|
|
||||||
|
Think of it like using a camera: the camera might be shared, but the photos you take with it are yours. Sunday Comics is the camera, your comics are the photos.
|
||||||
|
|
||||||
|
### What This Means
|
||||||
|
|
||||||
|
- ✅ You can use Sunday Comics for free, forever
|
||||||
|
- ✅ You can modify the code however you want
|
||||||
|
- ✅ You can use it for commercial projects
|
||||||
|
- ✅ Your comics and artwork remain 100% yours
|
||||||
|
- ✅ No attribution required (but always appreciated!)
|
||||||
|
- ✅ No revenue sharing or licensing fees
|
||||||
|
|||||||
4
app.py
4
app.py
@@ -1,3 +1,7 @@
|
|||||||
|
# Sunday Comics - A simple webcomic platform
|
||||||
|
# Copyright (c) 2025 Tomasita Cabrera
|
||||||
|
# Licensed under the MIT License - see LICENSE file for details
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from flask import Flask, render_template, abort, jsonify, request
|
from flask import Flask, render_template, abort, jsonify, request
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
# Comic data
|
# Sunday Comics - Comic data configuration
|
||||||
|
# Copyright (c) 2025 Tomasita Cabrera
|
||||||
|
# Licensed under the MIT License - see LICENSE file for details
|
||||||
|
#
|
||||||
# Edit this file to add, remove, or modify comics
|
# Edit this file to add, remove, or modify comics
|
||||||
|
|
||||||
# Global setting: The name of your comic/website
|
# Global setting: The name of your comic/website
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# Sunday Comics - Add comic script
|
||||||
|
# Copyright (c) 2025 Tomasita Cabrera
|
||||||
|
# Licensed under the MIT License - see LICENSE file for details
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Script to add a new comic entry to comics_data.py with reasonable defaults
|
Script to add a new comic entry to comics_data.py with reasonable defaults
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# Sunday Comics - RSS feed generator
|
||||||
|
# Copyright (c) 2025 Tomasita Cabrera
|
||||||
|
# Licensed under the MIT License - see LICENSE file for details
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Script to generate an RSS feed for the comic
|
Script to generate an RSS feed for the comic
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user