summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
* package cache renamed to package registryBen Morrison2019-05-142-2/+2
* mutex RLocks and a bug in FindTagBen Morrison2019-05-141-3/+10
* tentatively finished QueryTag and associated functionsBen Morrison2019-05-142-6/+63
* tentatively finished QueryUser functionBen Morrison2019-05-142-5/+36
* partially finished QueryUser() method. still needs sorting before returnBen Morrison2019-05-141-0/+23
* recording user addition date in time.Time and RFC3339Ben Morrison2019-05-132-4/+15
* commented indexHandlerBen Morrison2019-05-131-5/+14
* send etag for index. sha256 of template mod time.Ben Morrison2019-05-131-1/+8
* template initialization addedBen Morrison2019-05-136-22/+123
* skeleton template for indexBen Morrison2019-05-131-0/+13
* serving css virtually instead of directlyBen Morrison2019-05-135-9/+75
* comment on handler testsBen Morrison2019-05-131-0/+2
* separating cache into its own libraryBen Morrison2019-05-133-2/+46
* fixed viper config parsing resulting in build errorsBen Morrison2019-05-133-3/+18
* removed unneeded config valuesBen Morrison2019-05-132-2/+6
* help messageBen Morrison2019-05-131-1/+2
* changing flagsBen Morrison2019-05-131-8/+14
* handling viper error when binding to pflagsBen Morrison2019-05-131-1/+3
* staticcheck warning fixedBen Morrison2019-05-131-2/+2
* redundant path removed. comments added.Ben Morrison2019-05-131-3/+5
* adjusting test config init funcBen Morrison2019-05-131-6/+1
* more stubbed testsBen Morrison2019-05-132-2/+74
* travis-ci badgeBen Morrison2019-05-131-1/+1
* travis ci configBen Morrison2019-05-131-0/+8
* stubbing out testsBen Morrison2019-05-131-0/+31
* watching for ^C. added comments.Ben Morrison2019-05-132-2/+37
* passing logfile as var to closing goroutine to prevent race conditionBen Morrison2019-05-121-9/+9
* reorganized handlers. StrictSlash(true). handling POST /api/plain/users for n...Ben Morrison2019-05-122-9/+39
* added stdoutLogging bool and related configurationBen Morrison2019-05-123-30/+58
* new defaultsBen Morrison2019-05-121-0/+1
* commented someBen Morrison2019-05-121-1/+9
* ignoring log fileBen Morrison2019-05-121-0/+1
* config fleshed out; using viper+pflagBen Morrison2019-05-124-12/+88
* dependencies updatedBen Morrison2019-05-122-0/+40
* revive static analysis configBen Morrison2019-05-121-0/+30
* query vars to endpoint in routingBen Morrison2019-05-111-1/+3
* more graceful routing of http requestsBen Morrison2019-05-111-8/+23
* commenting earlyBen Morrison2019-05-111-0/+3
* commenting earlyBen Morrison2019-05-111-8/+19
* logging initialization in init()Ben Morrison2019-05-111-0/+27
* removed unneded conf fieldBen Morrison2019-05-111-7/+0
* skeleton handlers respondingBen Morrison2019-05-113-8/+51
* dependenciesBen Morrison2019-05-112-0/+12
* stubbed out handlersBen Morrison2019-05-114-22/+25
* gzipped responsesBen Morrison2019-05-113-2/+10
* reorgBen Morrison2019-05-113-4/+5
* change port for unprivileged bindsBen Morrison2019-05-101-1/+1
* ignoring binaryBen Morrison2019-05-101-0/+1
* updated readmeBen Morrison2019-05-101-1/+3
* building the skeletonBen Morrison2019-05-103-0/+69
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713