Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/vikin91/BibSpace
Browse files Browse the repository at this point in the history
  • Loading branch information
vikin91 committed Aug 8, 2017
2 parents 25e5719 + edf2209 commit 0ea19ca
Show file tree
Hide file tree
Showing 142 changed files with 10,800 additions and 9,851 deletions.
1 change: 1 addition & 0 deletions .perltidyrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
-bt=2 # High brace tightness
-sbt=2 # High square bracket tightness
-isbc # Don't indent comments without leading space
-nst
8 changes: 8 additions & 0 deletions .tidyallrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[PerlTidy]
select = **/*.{pl,pm,t}
argv = --profile=$ROOT/.perltidyrc

;[PerlCritic]
;select = lib/**/*.pm
;ignore = lib/BibStyle/**/*.pm
;argv = -severity 4
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
### Changelog ###

#### v0.5.2 08.2017 ####
* Code refactoring: perltidy
* Code refactoring: perlcritic severity 5
* Partial code refactoring: perlcritic severity 4

#### v0.5.1 08.2017 ####
* Add support for docekrizing
* Add support for dockerizing
* Move json files to json_data directory

#### v0.5.0 05.2016 ####
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ Visit [hex64.com](http://www.hex64.com/) and click backend/frontend demo to have
## Installation ##
* See [INSTALL.md](INSTALL.md)

## Using BibSpace with Docker ##

BibSpace has no official docker image on dockerhub (yet), thus you need to build it manually. However, an image with prerequisites exists to ease the process of building. Here are the commands to build BibSpace using docker.

```
# build BibSpace image
docker-compose build
# run it with docker-compose
docker-compose up -d
# thats it! Point you browser to http://localhost:8083/ to open BibSpace
# you may stop the container with
docker-compose down
```

Your MySQL data is stored in `db_data`, whereas preferences and stats in `json_data`.

## TODOs ##
BibSpace is currently undergoing serious refactoring. I try to keep current status up to date in [BibSpace Trelo Board](https://trello.com/b/yQ2VPiQ3/bibspace)
Expand Down
2 changes: 2 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ on 'test' => sub {
requires 'Test::Exception' , '>= 0.0';
requires 'Test::MockModule' , '>= 0.0';
requires 'Test::Pod::Coverage' , '>= 0.0';
requires 'Test::Code::TidyAll' , '>= 0.0';
requires 'Perl::Tidy' , '>= 0.0';
};

on 'develop' => sub {
Expand Down
Binary file modified fixture/bibspace_fixture.dat
Binary file not shown.
Loading

0 comments on commit 0ea19ca

Please sign in to comment.