Skip to content

Latest commit

 

History

History
70 lines (49 loc) · 1.84 KB

readme_en.md

File metadata and controls

70 lines (49 loc) · 1.84 KB


auto-pixai

Automatically claim daily rewards on pixai.art
中文自述在這裡

Getting Started

docker pull smile0301/auto-pixai
docker run -e LOGINNAME=<your-username> -e PASSWORD=<your-password> --name <container-name> smile0301/auto-pixai

Replace <container-name> with a name of your choice to consistently identify the container.

Manual Operations

# Start the container manually
docker start <container-name>
# Stop the container manually
docker stop <container-name>
# Check container status
docker inspect <container-name>

About Username and Password

If you are using third-party login and do not have a username and password:

Please visit Your Profile Page

account

You can set up your username and password here. Modifying your username requires a verification email.

Running Locally

If you prefer not to use Docker, you can run it locally:

Required environment node:18.17.0

Execute:

git clone https://github.com/Mr-Smilin/auto-pixai.git
npm install

Edit app.js:

const username = <your-username>;
const password = <your-password>;
const isDocker = false;

Execute:

npm start