Code Monkey home page Code Monkey logo

mein-manga's Introduction

Nest Logo

Description

Mein-Manga is an individual and comfortable comic/manga web reader. Enjoy reading on your computer as well as your phone.

Installation

You can manually download the lates version of the server from here

# Downloading the app
$ git clone --recurse-submodules [email protected]:robertojmm/mein-manga.git

# Installing dependencies
$ npm run install:all

# Build WebApp
$ cd web && npm run build

# Build Server
$ cd .. && npm run build:windows (or linux)

❗ ❗ Don't forget to edit src/env.ts with your credentials :exclamation: :exclamation:

❗ ❗ Don't forget to change folder paths in dist/settings.json once you executed the app :exclamation: :exclamation:

Running the app

# Basic run
$ npm start


# Using screen
# Create the screen
$ screen -S mein-manga

# Then execute the app
$ npm start

# To exit without stopping the app
Control + A, then Control + D

📜 License

Mein-Manga and Nest are MIT licensed.

mein-manga's People

Contributors

alejandroarnd avatar robertojmm avatar sercopi avatar

Watchers

 avatar

mein-manga's Issues

Extract CBZ method fails

This method is supposed to work as readZip, but it has a strange behaviour.
It's important to fix this so people could also upload cbz files.
Thanks beforehand!

private readRar({
filePath,
destination,
onlyExtractCover,
}: {
filePath: string;
destination: string;
onlyExtractCover?: boolean;
}): { pages: number; path: string; posterName: string } {
const files = UnrarJs.unrarSync(filePath);
const result = { pages: files.lenght, path: destination, posterName: '' };
if (onlyExtractCover) {
const file = files[0];
result.posterName = file.filename;
result.path = writeFileSyncWithSafeName(
destination,
file.filename,
file.fileData,
);
return result;
}
files.forEach(file =>
writeFileSyncWithSafeName(destination, file.filename, file.fileData),
);
return result;
}

bug in docker-compose-dev.yml

after downloading the code, npm run start-docker:dev gives error:

ERROR: The Compose file './docker-compose-dev.yml' is invalid because:
services.manga-dev.build contains unsupported option: 'target'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start-docker:dev: `sudo docker-compose -f docker-compose-dev.yml up`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] start-docker:dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/akuma/.npm/_logs/2020-12-09T17_49_39_345Z-debug.log

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.