mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
99 lines
2.7 KiB
Markdown
99 lines
2.7 KiB
Markdown
# 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.
|
|
|
|
## Project Structure
|
|
|
|
This project consists of two main parts:
|
|
|
|
1. **Backend (Python with FastAPI):** This handles communication with the Anixart API and provides data to the frontend.
|
|
2. **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
|
|
|
|
### Prerequisites
|
|
|
|
- Python 3.6 or later ([https://www.python.org/downloads/](https://www.python.org/downloads/))
|
|
- Node.js and npm ([https://nodejs.org/en](https://nodejs.org/en))
|
|
|
|
### Setting Up the Backend
|
|
|
|
1. Clone this repository.
|
|
2. Navigate to the project directory in your terminal.
|
|
3. Create a virtual environment to isolate project dependencies:
|
|
|
|
```bash
|
|
python -m venv venv
|
|
source venv/bin/activate # For Linux/macOS
|
|
venv\Scripts\activate.bat # For Windows
|
|
```
|
|
|
|
4. Install the required backend dependencies:
|
|
|
|
```bash
|
|
pip install -r ./requirements.txt
|
|
```
|
|
|
|
### Setting Up the Frontend
|
|
|
|
1. Navigate to the `frontend` directory.
|
|
2. Install the required frontend dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
### Running the Project
|
|
|
|
1. Start the backend server:
|
|
|
|
```bash
|
|
cd ./backend
|
|
source ./venv/bin/activate
|
|
uvicorn main:app --reload
|
|
```
|
|
|
|
2. Start the frontend development server:
|
|
|
|
```bash
|
|
cd ./frontend
|
|
npm run dev
|
|
```
|
|
|
|
3. Start local traefik reverse proxy
|
|
|
|
1. download a traefik binary from [github](https://github.com/traefik/traefik/releases/tag/v2.11.2)
|
|
2. place it in traefik directory and make it executable
|
|
3. add the following line to the hosts file `127.0.0.1 anix.test.local`
|
|
4. run `sudo ./traefik --configFile ./traefik.yml`
|
|
|
|
This will start the development server for both the backend and frontend. You can access the AniX web client in your browser at `anix.test.local` via http only.
|
|
|
|
## Development
|
|
|
|
0. Install global pre-commit `pip install pre-commit`
|
|
1. Install pre-commit hooks `pre-commit install #inside repository folder`
|
|
|
|
Feel free to make changes and experiment with the project.
|
|
|
|
## Deployment
|
|
|
|
### Docker
|
|
|
|
To be added soon . . .
|
|
|
|
### Deta Space
|
|
|
|
To be added soon . . .
|
|
|
|
### Standalone
|
|
|
|
To be added soon . . .
|
|
|
|
## 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.
|