diff --git a/app.py b/app.py index da5364f..ea91cfd 100644 --- a/app.py +++ b/app.py @@ -2,7 +2,7 @@ from dotenv import load_dotenv load_dotenv() -from truthseeker import APP as app # the variable 'app' is detected by `flask run` +from truthinquiry import APP as app # the variable 'app' is detected by `flask run` if __name__ == "__main__": app.run() diff --git a/tests/test_api.py b/tests/test_api.py index 1412301..7e09934 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -6,7 +6,7 @@ from dotenv import load_dotenv # Load dotenv file load_dotenv() -from truthseeker import APP +from truthinquiry import APP test_app = APP.test_client() class TestException(Exception): diff --git a/truthseeker/__init__.py b/truthinquiry/__init__.py similarity index 83% rename from truthseeker/__init__.py rename to truthinquiry/__init__.py index 3994896..313107f 100644 --- a/truthseeker/__init__.py +++ b/truthinquiry/__init__.py @@ -3,10 +3,10 @@ import os import flask from flask_socketio import SocketIO -from truthseeker import discord_bot +from truthinquiry import discord_bot -class TruthSeekerApp(flask.Flask): +class TruthInquiryApp(flask.Flask): """ Main class of the app A single instance 'APP' of this class will be created and shared across the files @@ -17,7 +17,7 @@ class TruthSeekerApp(flask.Flask): """ def __init__(self): - super().__init__("truthseeker") + super().__init__("truthinquiry") self.games_list = {} @@ -35,9 +35,9 @@ class TruthSeekerApp(flask.Flask): else: print("No token set. Not starting discord bot") -APP = TruthSeekerApp() +APP = TruthInquiryApp() -from truthseeker.routes import routes_api, routes_ui, routes_socketio +from truthinquiry.routes import routes_api, routes_ui, routes_socketio APP.register_blueprint(routes_api.routes_api, url_prefix="/api/v1") APP.register_blueprint(routes_ui.routes_ui, url_prefix="/") diff --git a/truthseeker/discord_bot.py b/truthinquiry/discord_bot.py similarity index 97% rename from truthseeker/discord_bot.py rename to truthinquiry/discord_bot.py index 3205de6..5e79c69 100644 --- a/truthseeker/discord_bot.py +++ b/truthinquiry/discord_bot.py @@ -2,7 +2,7 @@ import threading import asyncio import discord -import truthseeker +import truthinquiry class DiscordBot: @@ -56,7 +56,7 @@ class DiscordBot: """ Update the bot's status using the app's current context """ - games_n = len(truthseeker.APP.games_list) + games_n = len(truthinquiry.APP.games_list) activity_name = f"Handling {games_n} game{'' if games_n==1 else 's'} !" activity = discord.Activity(name=activity_name, type=discord.ActivityType.watching) await self.bot.change_presence(activity=activity) diff --git a/truthseeker/logic/data_persistance/data/answer.py b/truthinquiry/logic/data_persistance/data/answer.py similarity index 100% rename from truthseeker/logic/data_persistance/data/answer.py rename to truthinquiry/logic/data_persistance/data/answer.py diff --git a/truthseeker/logic/data_persistance/data/locales.py b/truthinquiry/logic/data_persistance/data/locales.py similarity index 100% rename from truthseeker/logic/data_persistance/data/locales.py rename to truthinquiry/logic/data_persistance/data/locales.py diff --git a/truthseeker/logic/data_persistance/data/npc.py b/truthinquiry/logic/data_persistance/data/npc.py similarity index 100% rename from truthseeker/logic/data_persistance/data/npc.py rename to truthinquiry/logic/data_persistance/data/npc.py diff --git a/truthseeker/logic/data_persistance/data/places.py b/truthinquiry/logic/data_persistance/data/places.py similarity index 100% rename from truthseeker/logic/data_persistance/data/places.py rename to truthinquiry/logic/data_persistance/data/places.py diff --git a/truthseeker/logic/data_persistance/data/questions.py b/truthinquiry/logic/data_persistance/data/questions.py similarity index 100% rename from truthseeker/logic/data_persistance/data/questions.py rename to truthinquiry/logic/data_persistance/data/questions.py diff --git a/truthseeker/logic/data_persistance/data/reactions.py b/truthinquiry/logic/data_persistance/data/reactions.py similarity index 100% rename from truthseeker/logic/data_persistance/data/reactions.py rename to truthinquiry/logic/data_persistance/data/reactions.py diff --git a/truthseeker/logic/data_persistance/data/traits.py b/truthinquiry/logic/data_persistance/data/traits.py similarity index 100% rename from truthseeker/logic/data_persistance/data/traits.py rename to truthinquiry/logic/data_persistance/data/traits.py diff --git a/truthseeker/logic/data_persistance/data_access.py b/truthinquiry/logic/data_persistance/data_access.py similarity index 98% rename from truthseeker/logic/data_persistance/data_access.py rename to truthinquiry/logic/data_persistance/data_access.py index 6ebd5db..3c07a7c 100644 --- a/truthseeker/logic/data_persistance/data_access.py +++ b/truthinquiry/logic/data_persistance/data_access.py @@ -1,6 +1,6 @@ import os import random -import truthseeker.logic.data_persistance.tables as tables +import truthinquiry.logic.data_persistance.tables as tables from sqlalchemy import create_engine from sqlalchemy.orm import Session diff --git a/truthseeker/logic/data_persistance/remote.py b/truthinquiry/logic/data_persistance/remote.py similarity index 100% rename from truthseeker/logic/data_persistance/remote.py rename to truthinquiry/logic/data_persistance/remote.py diff --git a/truthseeker/logic/data_persistance/tables.py b/truthinquiry/logic/data_persistance/tables.py similarity index 100% rename from truthseeker/logic/data_persistance/tables.py rename to truthinquiry/logic/data_persistance/tables.py diff --git a/truthseeker/logic/game_logic.py b/truthinquiry/logic/game_logic.py similarity index 97% rename from truthseeker/logic/game_logic.py rename to truthinquiry/logic/game_logic.py index cce9cb5..38f41fd 100644 --- a/truthseeker/logic/game_logic.py +++ b/truthinquiry/logic/game_logic.py @@ -2,8 +2,8 @@ import string import random from typing import Union -from truthseeker.logic.data_persistance.data_access import * -from truthseeker import APP +from truthinquiry.logic.data_persistance.data_access import * +from truthinquiry import APP def random_string(length: int) -> str: @@ -131,7 +131,7 @@ class Game: if npc_id not in self.reaction_table: return 0 reaction_id = self.reaction_table[npc_id] - return read_image(f"./truthseeker/static/images/npc/{npc_id}/{reaction_id}.png") + return read_image(f"./truthinquiry/static/images/npc/{npc_id}/{reaction_id}.png") def get_player_results(self, responses: dict) -> Union[dict, None]: """ @@ -321,4 +321,4 @@ def get_npc_image(npc_id: int): :param npc_id: npc to get the neutral image from :return: the byte representation of the image, none if its not found or not readable """ - return read_image(f"./truthseeker/static/images/npc/{npc_id}/0.png") + return read_image(f"./truthinquiry/static/images/npc/{npc_id}/0.png") diff --git a/truthseeker/routes/routes_api.py b/truthinquiry/routes/routes_api.py similarity index 98% rename from truthseeker/routes/routes_api.py rename to truthinquiry/routes/routes_api.py index 27017f3..8db3541 100644 --- a/truthseeker/routes/routes_api.py +++ b/truthinquiry/routes/routes_api.py @@ -1,8 +1,8 @@ import json import flask -from truthseeker import APP -from truthseeker.logic import game_logic +from truthinquiry import APP +from truthinquiry.logic import game_logic routes_api = flask.Blueprint("api", __name__) diff --git a/truthseeker/routes/routes_socketio.py b/truthinquiry/routes/routes_socketio.py similarity index 86% rename from truthseeker/routes/routes_socketio.py rename to truthinquiry/routes/routes_socketio.py index 9fdab2f..5779fc7 100644 --- a/truthseeker/routes/routes_socketio.py +++ b/truthinquiry/routes/routes_socketio.py @@ -2,8 +2,8 @@ import socketio from flask_socketio import join_room -from truthseeker import APP -from truthseeker.logic import game_logic +from truthinquiry import APP +from truthinquiry.logic import game_logic @APP.socketio_app.on('connect') diff --git a/truthseeker/routes/routes_ui.py b/truthinquiry/routes/routes_ui.py similarity index 100% rename from truthseeker/routes/routes_ui.py rename to truthinquiry/routes/routes_ui.py diff --git a/truthseeker/static/css/game_ui.css b/truthinquiry/static/css/game_ui.css similarity index 100% rename from truthseeker/static/css/game_ui.css rename to truthinquiry/static/css/game_ui.css diff --git a/truthseeker/static/css/game_ui_game.css b/truthinquiry/static/css/game_ui_game.css similarity index 100% rename from truthseeker/static/css/game_ui_game.css rename to truthinquiry/static/css/game_ui_game.css diff --git a/truthseeker/static/css/game_ui_legal.css b/truthinquiry/static/css/game_ui_legal.css similarity index 100% rename from truthseeker/static/css/game_ui_legal.css rename to truthinquiry/static/css/game_ui_legal.css diff --git a/truthseeker/static/css/game_ui_lobby.css b/truthinquiry/static/css/game_ui_lobby.css similarity index 100% rename from truthseeker/static/css/game_ui_lobby.css rename to truthinquiry/static/css/game_ui_lobby.css diff --git a/truthseeker/static/css/game_ui_start.css b/truthinquiry/static/css/game_ui_start.css similarity index 100% rename from truthseeker/static/css/game_ui_start.css rename to truthinquiry/static/css/game_ui_start.css diff --git a/truthseeker/static/fonts/roboto_mono_v22/roboto_mono_v22.ttf b/truthinquiry/static/fonts/roboto_mono_v22/roboto_mono_v22.ttf similarity index 100% rename from truthseeker/static/fonts/roboto_mono_v22/roboto_mono_v22.ttf rename to truthinquiry/static/fonts/roboto_mono_v22/roboto_mono_v22.ttf diff --git a/truthseeker/static/fonts/roboto_mono_v22/roboto_mono_v22.woff b/truthinquiry/static/fonts/roboto_mono_v22/roboto_mono_v22.woff similarity index 100% rename from truthseeker/static/fonts/roboto_mono_v22/roboto_mono_v22.woff rename to truthinquiry/static/fonts/roboto_mono_v22/roboto_mono_v22.woff diff --git a/truthseeker/static/fonts/roboto_mono_v22/roboto_mono_v22.woff2 b/truthinquiry/static/fonts/roboto_mono_v22/roboto_mono_v22.woff2 similarity index 100% rename from truthseeker/static/fonts/roboto_mono_v22/roboto_mono_v22.woff2 rename to truthinquiry/static/fonts/roboto_mono_v22/roboto_mono_v22.woff2 diff --git a/truthseeker/static/fonts/spicy_rice_v21/spicy_rice_v21.ttf b/truthinquiry/static/fonts/spicy_rice_v21/spicy_rice_v21.ttf similarity index 100% rename from truthseeker/static/fonts/spicy_rice_v21/spicy_rice_v21.ttf rename to truthinquiry/static/fonts/spicy_rice_v21/spicy_rice_v21.ttf diff --git a/truthseeker/static/fonts/spicy_rice_v21/spicy_rice_v21.woff b/truthinquiry/static/fonts/spicy_rice_v21/spicy_rice_v21.woff similarity index 100% rename from truthseeker/static/fonts/spicy_rice_v21/spicy_rice_v21.woff rename to truthinquiry/static/fonts/spicy_rice_v21/spicy_rice_v21.woff diff --git a/truthseeker/static/fonts/spicy_rice_v21/spicy_rice_v21.woff2 b/truthinquiry/static/fonts/spicy_rice_v21/spicy_rice_v21.woff2 similarity index 100% rename from truthseeker/static/fonts/spicy_rice_v21/spicy_rice_v21.woff2 rename to truthinquiry/static/fonts/spicy_rice_v21/spicy_rice_v21.woff2 diff --git a/truthseeker/static/fonts/titan_one_v13/titan_one_v13.ttf b/truthinquiry/static/fonts/titan_one_v13/titan_one_v13.ttf similarity index 100% rename from truthseeker/static/fonts/titan_one_v13/titan_one_v13.ttf rename to truthinquiry/static/fonts/titan_one_v13/titan_one_v13.ttf diff --git a/truthseeker/static/fonts/titan_one_v13/titan_one_v13.woff b/truthinquiry/static/fonts/titan_one_v13/titan_one_v13.woff similarity index 100% rename from truthseeker/static/fonts/titan_one_v13/titan_one_v13.woff rename to truthinquiry/static/fonts/titan_one_v13/titan_one_v13.woff diff --git a/truthseeker/static/fonts/titan_one_v13/titan_one_v13.woff2 b/truthinquiry/static/fonts/titan_one_v13/titan_one_v13.woff2 similarity index 100% rename from truthseeker/static/fonts/titan_one_v13/titan_one_v13.woff2 rename to truthinquiry/static/fonts/titan_one_v13/titan_one_v13.woff2 diff --git a/truthseeker/static/images/entrée-manoir.png b/truthinquiry/static/images/entrée-manoir.png similarity index 100% rename from truthseeker/static/images/entrée-manoir.png rename to truthinquiry/static/images/entrée-manoir.png diff --git a/truthseeker/static/images/moon.svg b/truthinquiry/static/images/moon.svg similarity index 100% rename from truthseeker/static/images/moon.svg rename to truthinquiry/static/images/moon.svg diff --git a/truthseeker/static/images/npc/1/0.png b/truthinquiry/static/images/npc/1/0.png similarity index 100% rename from truthseeker/static/images/npc/1/0.png rename to truthinquiry/static/images/npc/1/0.png diff --git a/truthseeker/static/images/npc/1/1.png b/truthinquiry/static/images/npc/1/1.png similarity index 100% rename from truthseeker/static/images/npc/1/1.png rename to truthinquiry/static/images/npc/1/1.png diff --git a/truthseeker/static/images/npc/1/2.png b/truthinquiry/static/images/npc/1/2.png similarity index 100% rename from truthseeker/static/images/npc/1/2.png rename to truthinquiry/static/images/npc/1/2.png diff --git a/truthseeker/static/images/npc/1/3.png b/truthinquiry/static/images/npc/1/3.png similarity index 100% rename from truthseeker/static/images/npc/1/3.png rename to truthinquiry/static/images/npc/1/3.png diff --git a/truthseeker/static/images/npc/1/4.png b/truthinquiry/static/images/npc/1/4.png similarity index 100% rename from truthseeker/static/images/npc/1/4.png rename to truthinquiry/static/images/npc/1/4.png diff --git a/truthseeker/static/images/npc/1/5.png b/truthinquiry/static/images/npc/1/5.png similarity index 100% rename from truthseeker/static/images/npc/1/5.png rename to truthinquiry/static/images/npc/1/5.png diff --git a/truthseeker/static/images/npc/2/0.png b/truthinquiry/static/images/npc/2/0.png similarity index 100% rename from truthseeker/static/images/npc/2/0.png rename to truthinquiry/static/images/npc/2/0.png diff --git a/truthseeker/static/images/npc/2/1.png b/truthinquiry/static/images/npc/2/1.png similarity index 100% rename from truthseeker/static/images/npc/2/1.png rename to truthinquiry/static/images/npc/2/1.png diff --git a/truthseeker/static/images/npc/2/2.png b/truthinquiry/static/images/npc/2/2.png similarity index 100% rename from truthseeker/static/images/npc/2/2.png rename to truthinquiry/static/images/npc/2/2.png diff --git a/truthseeker/static/images/npc/2/3.png b/truthinquiry/static/images/npc/2/3.png similarity index 100% rename from truthseeker/static/images/npc/2/3.png rename to truthinquiry/static/images/npc/2/3.png diff --git a/truthseeker/static/images/npc/2/4.png b/truthinquiry/static/images/npc/2/4.png similarity index 100% rename from truthseeker/static/images/npc/2/4.png rename to truthinquiry/static/images/npc/2/4.png diff --git a/truthseeker/static/images/npc/2/5.png b/truthinquiry/static/images/npc/2/5.png similarity index 100% rename from truthseeker/static/images/npc/2/5.png rename to truthinquiry/static/images/npc/2/5.png diff --git a/truthseeker/static/images/npc/3/0.png b/truthinquiry/static/images/npc/3/0.png similarity index 100% rename from truthseeker/static/images/npc/3/0.png rename to truthinquiry/static/images/npc/3/0.png diff --git a/truthseeker/static/images/npc/3/1.png b/truthinquiry/static/images/npc/3/1.png similarity index 100% rename from truthseeker/static/images/npc/3/1.png rename to truthinquiry/static/images/npc/3/1.png diff --git a/truthseeker/static/images/npc/3/2.png b/truthinquiry/static/images/npc/3/2.png similarity index 100% rename from truthseeker/static/images/npc/3/2.png rename to truthinquiry/static/images/npc/3/2.png diff --git a/truthseeker/static/images/npc/3/3.png b/truthinquiry/static/images/npc/3/3.png similarity index 100% rename from truthseeker/static/images/npc/3/3.png rename to truthinquiry/static/images/npc/3/3.png diff --git a/truthseeker/static/images/npc/3/4.png b/truthinquiry/static/images/npc/3/4.png similarity index 100% rename from truthseeker/static/images/npc/3/4.png rename to truthinquiry/static/images/npc/3/4.png diff --git a/truthseeker/static/images/npc/3/5.png b/truthinquiry/static/images/npc/3/5.png similarity index 100% rename from truthseeker/static/images/npc/3/5.png rename to truthinquiry/static/images/npc/3/5.png diff --git a/truthseeker/static/images/npc/4/0.png b/truthinquiry/static/images/npc/4/0.png similarity index 100% rename from truthseeker/static/images/npc/4/0.png rename to truthinquiry/static/images/npc/4/0.png diff --git a/truthseeker/static/images/npc/4/1.png b/truthinquiry/static/images/npc/4/1.png similarity index 100% rename from truthseeker/static/images/npc/4/1.png rename to truthinquiry/static/images/npc/4/1.png diff --git a/truthseeker/static/images/npc/4/2.png b/truthinquiry/static/images/npc/4/2.png similarity index 100% rename from truthseeker/static/images/npc/4/2.png rename to truthinquiry/static/images/npc/4/2.png diff --git a/truthseeker/static/images/npc/4/3.png b/truthinquiry/static/images/npc/4/3.png similarity index 100% rename from truthseeker/static/images/npc/4/3.png rename to truthinquiry/static/images/npc/4/3.png diff --git a/truthseeker/static/images/npc/4/4.png b/truthinquiry/static/images/npc/4/4.png similarity index 100% rename from truthseeker/static/images/npc/4/4.png rename to truthinquiry/static/images/npc/4/4.png diff --git a/truthseeker/static/images/npc/4/5.png b/truthinquiry/static/images/npc/4/5.png similarity index 100% rename from truthseeker/static/images/npc/4/5.png rename to truthinquiry/static/images/npc/4/5.png diff --git a/truthseeker/static/images/npc/5/0.png b/truthinquiry/static/images/npc/5/0.png similarity index 100% rename from truthseeker/static/images/npc/5/0.png rename to truthinquiry/static/images/npc/5/0.png diff --git a/truthseeker/static/images/npc/5/1.png b/truthinquiry/static/images/npc/5/1.png similarity index 100% rename from truthseeker/static/images/npc/5/1.png rename to truthinquiry/static/images/npc/5/1.png diff --git a/truthseeker/static/images/npc/5/2.png b/truthinquiry/static/images/npc/5/2.png similarity index 100% rename from truthseeker/static/images/npc/5/2.png rename to truthinquiry/static/images/npc/5/2.png diff --git a/truthseeker/static/images/npc/5/3.png b/truthinquiry/static/images/npc/5/3.png similarity index 100% rename from truthseeker/static/images/npc/5/3.png rename to truthinquiry/static/images/npc/5/3.png diff --git a/truthseeker/static/images/npc/5/4.png b/truthinquiry/static/images/npc/5/4.png similarity index 100% rename from truthseeker/static/images/npc/5/4.png rename to truthinquiry/static/images/npc/5/4.png diff --git a/truthseeker/static/images/npc/5/5.png b/truthinquiry/static/images/npc/5/5.png similarity index 100% rename from truthseeker/static/images/npc/5/5.png rename to truthinquiry/static/images/npc/5/5.png diff --git a/truthseeker/static/images/npc/6/0.png b/truthinquiry/static/images/npc/6/0.png similarity index 100% rename from truthseeker/static/images/npc/6/0.png rename to truthinquiry/static/images/npc/6/0.png diff --git a/truthseeker/static/images/npc/6/1.png b/truthinquiry/static/images/npc/6/1.png similarity index 100% rename from truthseeker/static/images/npc/6/1.png rename to truthinquiry/static/images/npc/6/1.png diff --git a/truthseeker/static/images/npc/6/2.png b/truthinquiry/static/images/npc/6/2.png similarity index 100% rename from truthseeker/static/images/npc/6/2.png rename to truthinquiry/static/images/npc/6/2.png diff --git a/truthseeker/static/images/npc/6/3.png b/truthinquiry/static/images/npc/6/3.png similarity index 100% rename from truthseeker/static/images/npc/6/3.png rename to truthinquiry/static/images/npc/6/3.png diff --git a/truthseeker/static/images/npc/6/4.png b/truthinquiry/static/images/npc/6/4.png similarity index 100% rename from truthseeker/static/images/npc/6/4.png rename to truthinquiry/static/images/npc/6/4.png diff --git a/truthseeker/static/images/npc/6/5.png b/truthinquiry/static/images/npc/6/5.png similarity index 100% rename from truthseeker/static/images/npc/6/5.png rename to truthinquiry/static/images/npc/6/5.png diff --git a/truthseeker/static/images/npc/7/0.png b/truthinquiry/static/images/npc/7/0.png similarity index 100% rename from truthseeker/static/images/npc/7/0.png rename to truthinquiry/static/images/npc/7/0.png diff --git a/truthseeker/static/images/npc/7/1.png b/truthinquiry/static/images/npc/7/1.png similarity index 100% rename from truthseeker/static/images/npc/7/1.png rename to truthinquiry/static/images/npc/7/1.png diff --git a/truthseeker/static/images/npc/7/2.png b/truthinquiry/static/images/npc/7/2.png similarity index 100% rename from truthseeker/static/images/npc/7/2.png rename to truthinquiry/static/images/npc/7/2.png diff --git a/truthseeker/static/images/npc/7/3.png b/truthinquiry/static/images/npc/7/3.png similarity index 100% rename from truthseeker/static/images/npc/7/3.png rename to truthinquiry/static/images/npc/7/3.png diff --git a/truthseeker/static/images/npc/7/4.png b/truthinquiry/static/images/npc/7/4.png similarity index 100% rename from truthseeker/static/images/npc/7/4.png rename to truthinquiry/static/images/npc/7/4.png diff --git a/truthseeker/static/images/npc/7/5.png b/truthinquiry/static/images/npc/7/5.png similarity index 100% rename from truthseeker/static/images/npc/7/5.png rename to truthinquiry/static/images/npc/7/5.png diff --git a/truthseeker/static/images/npc/8/0.png b/truthinquiry/static/images/npc/8/0.png similarity index 100% rename from truthseeker/static/images/npc/8/0.png rename to truthinquiry/static/images/npc/8/0.png diff --git a/truthseeker/static/images/npc/8/1.png b/truthinquiry/static/images/npc/8/1.png similarity index 100% rename from truthseeker/static/images/npc/8/1.png rename to truthinquiry/static/images/npc/8/1.png diff --git a/truthseeker/static/images/npc/8/2.png b/truthinquiry/static/images/npc/8/2.png similarity index 100% rename from truthseeker/static/images/npc/8/2.png rename to truthinquiry/static/images/npc/8/2.png diff --git a/truthseeker/static/images/npc/8/3.png b/truthinquiry/static/images/npc/8/3.png similarity index 100% rename from truthseeker/static/images/npc/8/3.png rename to truthinquiry/static/images/npc/8/3.png diff --git a/truthseeker/static/images/npc/8/4.png b/truthinquiry/static/images/npc/8/4.png similarity index 100% rename from truthseeker/static/images/npc/8/4.png rename to truthinquiry/static/images/npc/8/4.png diff --git a/truthseeker/static/images/npc/8/5.png b/truthinquiry/static/images/npc/8/5.png similarity index 100% rename from truthseeker/static/images/npc/8/5.png rename to truthinquiry/static/images/npc/8/5.png diff --git a/truthseeker/static/images/salle-interrogation.png b/truthinquiry/static/images/salle-interrogation.png similarity index 100% rename from truthseeker/static/images/salle-interrogation.png rename to truthinquiry/static/images/salle-interrogation.png diff --git a/truthseeker/static/images/salle-resultats.png b/truthinquiry/static/images/salle-resultats.png similarity index 100% rename from truthseeker/static/images/salle-resultats.png rename to truthinquiry/static/images/salle-resultats.png diff --git a/truthseeker/static/images/start_background.png b/truthinquiry/static/images/start_background.png similarity index 100% rename from truthseeker/static/images/start_background.png rename to truthinquiry/static/images/start_background.png diff --git a/truthseeker/static/images/sun.svg b/truthinquiry/static/images/sun.svg similarity index 100% rename from truthseeker/static/images/sun.svg rename to truthinquiry/static/images/sun.svg diff --git a/truthseeker/static/js/api.js b/truthinquiry/static/js/api.js similarity index 100% rename from truthseeker/static/js/api.js rename to truthinquiry/static/js/api.js diff --git a/truthseeker/static/js/game.js b/truthinquiry/static/js/game.js similarity index 100% rename from truthseeker/static/js/game.js rename to truthinquiry/static/js/game.js diff --git a/truthseeker/static/js/game_common.js b/truthinquiry/static/js/game_common.js similarity index 100% rename from truthseeker/static/js/game_common.js rename to truthinquiry/static/js/game_common.js diff --git a/truthseeker/static/js/game_lobby.js b/truthinquiry/static/js/game_lobby.js similarity index 100% rename from truthseeker/static/js/game_lobby.js rename to truthinquiry/static/js/game_lobby.js diff --git a/truthseeker/static/js/game_start_page.js b/truthinquiry/static/js/game_start_page.js similarity index 100% rename from truthseeker/static/js/game_start_page.js rename to truthinquiry/static/js/game_start_page.js diff --git a/truthseeker/static/js/socket.io_v4.4.1/socket.io.min.js b/truthinquiry/static/js/socket.io_v4.4.1/socket.io.min.js similarity index 100% rename from truthseeker/static/js/socket.io_v4.4.1/socket.io.min.js rename to truthinquiry/static/js/socket.io_v4.4.1/socket.io.min.js diff --git a/truthseeker/static/js/socket.io_v4.4.1/socket.io.min.js.map b/truthinquiry/static/js/socket.io_v4.4.1/socket.io.min.js.map similarity index 100% rename from truthseeker/static/js/socket.io_v4.4.1/socket.io.min.js.map rename to truthinquiry/static/js/socket.io_v4.4.1/socket.io.min.js.map diff --git a/truthseeker/templates/game.html b/truthinquiry/templates/game.html similarity index 100% rename from truthseeker/templates/game.html rename to truthinquiry/templates/game.html diff --git a/truthseeker/templates/index.html b/truthinquiry/templates/index.html similarity index 100% rename from truthseeker/templates/index.html rename to truthinquiry/templates/index.html diff --git a/truthseeker/templates/legal.html b/truthinquiry/templates/legal.html similarity index 100% rename from truthseeker/templates/legal.html rename to truthinquiry/templates/legal.html diff --git a/truthseeker/templates/licenses.html b/truthinquiry/templates/licenses.html similarity index 100% rename from truthseeker/templates/licenses.html rename to truthinquiry/templates/licenses.html diff --git a/truthseeker/templates/lobby.html b/truthinquiry/templates/lobby.html similarity index 100% rename from truthseeker/templates/lobby.html rename to truthinquiry/templates/lobby.html diff --git a/truthseeker/templates/privacy.html b/truthinquiry/templates/privacy.html similarity index 100% rename from truthseeker/templates/privacy.html rename to truthinquiry/templates/privacy.html