adding license to main files
This commit is contained in:
parent
81c890a83d
commit
df76fb9131
4 changed files with 64 additions and 0 deletions
|
@ -1,3 +1,19 @@
|
||||||
|
#Kemoverse - a gacha-style bot for the Fediverse.
|
||||||
|
#Copyright © 2025 Waifu
|
||||||
|
#
|
||||||
|
#This program is free software: you can redistribute it and/or modify
|
||||||
|
#it under the terms of the GNU Affero General Public License as
|
||||||
|
#published by the Free Software Foundation, either version 3 of the
|
||||||
|
#License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
#This program is distributed in the hope that it will be useful,
|
||||||
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
#GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
#You should have received a copy of the GNU Affero General Public License
|
||||||
|
#along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import misskey as misskey
|
import misskey as misskey
|
||||||
from client import client_connection
|
from client import client_connection
|
||||||
|
|
16
setup_db.py
16
setup_db.py
|
@ -1,3 +1,19 @@
|
||||||
|
#Kemoverse - a gacha-style bot for the Fediverse.
|
||||||
|
#Copyright © 2025 Waifu
|
||||||
|
#
|
||||||
|
#This program is free software: you can redistribute it and/or modify
|
||||||
|
#it under the terms of the GNU Affero General Public License as
|
||||||
|
#published by the Free Software Foundation, either version 3 of the
|
||||||
|
#License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
#This program is distributed in the hope that it will be useful,
|
||||||
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
#GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
#You should have received a copy of the GNU Affero General Public License
|
||||||
|
#along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import traceback
|
import traceback
|
||||||
import os
|
import os
|
||||||
|
|
16
startup.sh
16
startup.sh
|
@ -1,5 +1,21 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
#Kemoverse - a gacha-style bot for the Fediverse.
|
||||||
|
#Copyright © 2025 Waifu
|
||||||
|
#
|
||||||
|
#This program is free software: you can redistribute it and/or modify
|
||||||
|
#it under the terms of the GNU Affero General Public License as
|
||||||
|
#published by the Free Software Foundation, either version 3 of the
|
||||||
|
#License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
#This program is distributed in the hope that it will be useful,
|
||||||
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
#GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
#You should have received a copy of the GNU Affero General Public License
|
||||||
|
#along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
|
||||||
# Navigate to the project directory (optional)
|
# Navigate to the project directory (optional)
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
|
16
web/app.py
16
web/app.py
|
@ -1,3 +1,19 @@
|
||||||
|
#Kemoverse - a gacha-style bot for the Fediverse.
|
||||||
|
#Copyright © 2025 Waifu
|
||||||
|
#
|
||||||
|
#This program is free software: you can redistribute it and/or modify
|
||||||
|
#it under the terms of the GNU Affero General Public License as
|
||||||
|
#published by the Free Software Foundation, either version 3 of the
|
||||||
|
#License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
#This program is distributed in the hope that it will be useful,
|
||||||
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
#GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
#You should have received a copy of the GNU Affero General Public License
|
||||||
|
#along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
|
||||||
import sqlite3
|
import sqlite3
|
||||||
|
|
||||||
from flask import Flask, render_template, abort
|
from flask import Flask, render_template, abort
|
||||||
|
|
Loading…
Add table
Reference in a new issue