Skip to content

bartheexplorer/anicore

Repository files navigation

Anicore

Anicore is a simple anime directory app

📦 Installation

Clone this repository into your local machine, then:

NPM:

$ npm install

Yarn:

$ yarn install

copy the env file

$ cp .env.example .env

and run it

$ npm run dev // or yarn dev

You can also build the image with docker:

$ docker build -t anicore:dev .

and run it

$ docker run \
    -it \
    --rm \
    -v ${PWD}:/app \
    -v /app/node_modules \
    -p 3001:3000 \
    -e CHOKIDAR_USEPOLLING=true \
    anicore:dev