Anicore is a simple anime directory app
Clone this repository into your local machine, then:
NPM:
$ npm installYarn:
$ yarn installcopy the env file
$ cp .env.example .envand run it
$ npm run dev // or yarn devYou 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