https://github.com/astj/p6-intern-bookmark
https://github.com/astj/p6-intern-bookmark
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/astj/p6-intern-bookmark
- Owner: astj
- Created: 2016-04-09T05:19:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-01T16:59:54.000Z (over 9 years ago)
- Last Synced: 2025-04-14T06:35:58.889Z (over 1 year ago)
- Language: Perl6
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# p6-Intern-Bookmark (and Intern-Exercise)
Ref: https://github.com/hatena/perl-Intern-Bookmark
## setup
```
mysql -unobody -pnobody -e 'create database intern_bookmark;'
mysql -unobody -pnobody intern_bookmark < db/schema.sql
panda installdeps .
```
And for testing,
```
mysql -unobody -pnobody -e 'create database intern_bookmark_test;'
mysql -unobody -pnobody intern_bookmark_test < db/schema.sql
```
## CLI
```
perl6 -Ilib script/bookmark.pl
```
## Web
```
crustup -Ilib script/app.p6sgi
```
## Testing
```
prove --exec 'perl6 -Ilib -It/lib' -vr t
```
## See also
- Textbook: https://github.com/hatena/Hatena-Textbook
- Intern-Exercise: https://github.com/hatena/Hatena-Intern-Exercise2015