An application for managing digital comics.
ComixEd is designed to be a digital comics manager. It will:
- import your existing and new digital comics
- organize your comics under a single directory
- allow you to view and edit the details of the comic
- search your comic library by comic details
- identify, and delete, duplicate pages across comics
- provide access to your library from a variety of applications
Paired with an application that can read your comics (such as Chunky Reader) you will have a very powerful and useful solution for reading your comic collection.
The following digital comic formats are supported:
- CBZ (ZIP)
- CBR (RAR)
- CB7 (7ZIP)
The project is broken up into two parts:
- the Java backend, and
- the Angular web frontend.
The backend needs to have a few lines of configuration setup.
The two main entries that need to be setup are:
configuration.filename=C:/Users/comics/comixedrc
spring.datasource.url=jdbc:h2:file:C:/Users/comics/comixed;create=true
The configurtion.filename entry tells the application where to find the persisted configuration for the application.
The spring.datasource.url entry tells the application where the database is location, and the create=true portion tells it to create the database file if it's not found.
To start the backend, launch it from the command line with:
$ mvn spring-boot:run
To connect to the web application, point a browser to http://localhost:7171/index.html.
You can then log into the application with one of two default accounts:
- Administrator username=comixedadmin@localhost password=comixedadmin
- Reader username=comixedreader@localhost password=comixedreader
Please see the wiki page page for getting your environment up and running.
This project uses Git Flow when developing code. When working on a feature or fixing a bug, please write and test your code against the develop branch. Then, when it is completed, please send a pull request to have the code imported.
If the code is in good shape, then it will be included.
If the code needs some fixes or changes, the developers will provide feedback asking for those changes. Then please resubmit your changes.
And, if this is your first addition to the project, please add your name to the CONTRIBUTORS.md file with your pull request.
- example.cbz - https://www.contrapositivediary.com/?p=1197
- missing_page.png - Original found at https://commons.wikimedia.org/wiki/File:Comic_image_missing.svg
- ConfirmationPopoverModule - https://www.npmjs.com/package/angular-confirmation-popover
- ngx-pagination - https://github.com/michaelbromley/ngx-pagination