backend | ||
docker | ||
docs | ||
frontend | ||
.cz.yaml | ||
.dockerignore | ||
.env | ||
.gitignore | ||
.pre-commit-config.yaml | ||
.spaceignore | ||
CHANGELOG.md | ||
docker-compose.dev.yml | ||
docker-compose.yml | ||
LICENSE | ||
README.md | ||
Spacefile | ||
TODO.md |
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
User profile page
Pages with releases lists
Release page and Player
Features
- Dynamic theming (light/dark mode, app colors)
- login/logout to AnixArt account
- sync watch history, bookmarks and favorites
- row or card layout for releases view
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.
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.
Getting Started
Docker
Docker Requirements
- docker (>=26)
- docker compose (>= 2.27)
Running development 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/v1/docs
Running development project via Docker with realtime changes
To run development environment with realtime changes 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 with realtime changes.
To access the docker logs you can use docker compose -f docker-compose.dev.yml logs -f
command.
Deployment
first steps
- clone this repository via
git clone https://github.com/Radiquum/AniX.git
- cd into the repository folder.
- deploy app with below instructions.
Docker Deployment
Docker Prerequisites
- Docker: Make sure Docker is installed on your system. You can download it from https://www.docker.com/.
- Docker Compose: Docker Compose should also be installed. It's usually included with Docker installations.
- Domain Name: (optional) You need a registered domain name (e.g.,
example.com
) and have it pointing to your server's IP address. - SSL Certificate: (optional) For HTTPS, you'll need an SSL certificate. Let's Encrypt is a free and popular option.
Docker steps
- Edit the .env file
- Edit the docker-compose.yml file to match your needs.
- run
docker compose up -d
to build and run production images. - your app will be available at
http(s)://{DOMAIN}
. - run
docker compose down
to stop the containers.
notes:
-
application is deployed as http by default, to enable https you need to edit docker compose and .env files.
if https is enabled, traefik will automatically issue HTTPS certificate from lets encrypt and redirect to HTTPS.
-
you can also run
docker compose up --build
to build and run images without re-deploying the containers.
Deta Space
-
Install the Space CLI:
curl -fsSL https://deta.space/assets/space-cli.sh | sh
-
Login to Deta Space:
space login
(You'll need to grab an access token from your Space dashboard)
-
Create a new Space Project:
space new
(This will guide you through setting up your project)
-
Push your app to Deta Space:
space push --runner-version experimental
(This will build and deploy your application)
You can find more details in the Deta Space documentation: Deta Space Docs
Vercel
note you don't need to complete the first steps for vercel deploy
- Deploy the backend and copy the production url, including the prefix
- create a new project on vercel and set the root directory to frontend
- set API_URL env variable to copied url
- click deploy
Available environment variables
- API_URL - sets the api url to use for frontend to connect to the backend
One-Click Deploy
note: this will create a new repository.
note: don't forget to set API_URL to backend url.
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.