- **BREAKING CHANGE**: Api url now /api/v1 \n **Fix**: Frontend build. \n **Fix**: errors about unknown styles BREAKING CHANGE:
3.8 KiB
AniX - Unofficial Web Client for Anixart
AniX is an unofficial web client for the Android application Anixart. It allows you to access and manage your Anixart account from a web browser on your desktop or laptop computer.
Screenshots
Project Structure
This project consists of two main parts:
- Backend (Python with FastAPI): This handles communication with the Anixart API and provides data to the frontend.
- Frontend (Next.js): This is the user interface that you interact with in your web browser. It fetches data from the backend and displays it in a user-friendly way.
Disclaimer
Please note that AniX is an unofficial project and is not affiliated with the developers of Anixart. It is recommended to use the official Anixart app for the most up-to-date features and functionality.
Getting Started
The is a two ways to run this project locally. directly and via docker compose.
Docker
Docker Requirements
- docker (>=26)
- docker compose (>= 2.27)
Running the project via Docker
Execute docker compose -f docker-compose.dev.yml up
command in the root of the folder.
You can access the AniX web client in your browser at http://127.0.0.1
. And API docs at http://127.0.0.1/api/docs
Directly
Prerequisites
- Python 3.6 or later (https://www.python.org/downloads/)
- Node.js and npm (https://nodejs.org/en)
Setting Up the Backend
-
Clone this repository.
-
Navigate to the project directory in your terminal.
-
Create a virtual environment to isolate project dependencies:
python -m venv venv source venv/bin/activate # For Linux/macOS venv\Scripts\activate.bat # For Windows
-
Install the required backend dependencies:
pip install -r ./requirements.txt
Setting Up the Frontend
-
Navigate to the
frontend
directory. -
Install the required frontend dependencies:
npm install
Running the Project
-
Start the backend server:
cd ./backend source ./venv/bin/activate uvicorn main:app --reload
-
Start the frontend development server:
cd ./frontend npm run dev
-
Start local traefik reverse proxy
- download a traefik binary from github
- place it in traefik directory and make it executable
- run
sudo ./traefik --configFile ./traefik.yml
You can access the AniX web client in your browser at http://127.0.0.1
. And API docs at http://127.0.0.1/api/docs
Development
To maintain code formatting it's recommended to use pre-commit hooks
- Install global pre-commit
pip install pre-commit
- Install pre-commit hooks via
pre-commit install
inside repository folder
To maintain readable git commit messages it's recommended to use commitizen
Feel free to make changes and experiment with the project.
Docker development environment
To run development environment via docker you can execute the docker watch command, it will watch and copy local changes in to the running container. you will need to use the dev compose file and docker files.
Execute the docker compose -f docker-compose.dev.yml watch
command to set up the docker development environment.
To access the docker logs you can use docker compose -f docker-compose.dev.yml logs -f
command.
Deployment
Contributing
We welcome contributions to this project! If you have any bug fixes, improvements, or new features, please feel free to create a pull request.