Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 567 Bytes

README.md

File metadata and controls

50 lines (35 loc) · 567 Bytes

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