This is a Flask-based server that provides a REST API for managing anime information. Follow the steps below to set up and run the server.
-
Clone the repository:
git clone https://github.com/jsrwell/anime-catalog cd your-repository -
Create a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate -
Install the dependencies:
pip install -r requirements.txt
-
Configure the database:
-
Initialize the database:
flask db init
-
Create a migration:
flask db migrate
-
Apply the migrations:
flask db upgrade
-
-
Start the server:
flask run
Now the server is up and running. You can access the API at http://localhost:5000 to view the available routes.
You can use this API to manage anime information. Refer to the API documentation for more details on how to use the available routes.
jsrwell