Skip to content

Commit

Permalink
Merge pull request #2 from timewarrior-synchronize/migrate-to-github
Browse files Browse the repository at this point in the history
Migrate to GitHub
  • Loading branch information
vstollen authored Mar 16, 2021
2 parents 5f0d6c1 + eb78a9d commit 0e2fa08
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 61 deletions.
29 changes: 0 additions & 29 deletions .gitlab-ci.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .gitlab/issue_templates/user_story.md

This file was deleted.

4 changes: 0 additions & 4 deletions .gitlab/merge_request_templates/default.md

This file was deleted.

2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ with pkgs;
buildGoPackage rec {
pname = "timewsync-server";
version = "1.0.0";
goPackagePath = "git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server";
goPackagePath = "github.com/timewarrior-synchronize/timew-sync-server";
src = ./.;
goDeps = ./deps.nix;
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server
module github.com/timewarrior-synchronize/timew-sync-server

go 1.15

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"database/sql"
"flag"
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/storage"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/sync"
"github.com/timewarrior-synchronize/timew-sync-server/storage"
"github.com/timewarrior-synchronize/timew-sync-server/sync"
"log"
"net/http"
"os"
Expand Down
2 changes: 1 addition & 1 deletion storage/ephemeral.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
package storage

import (
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion storage/ephemeral_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
package storage

import (
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/google/go-cmp/cmp"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"testing"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion storage/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"context"
"database/sql"
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion storage/sql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package storage

import (
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/google/go-cmp/cmp"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"testing"
"time"

Expand Down
2 changes: 1 addition & 1 deletion storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package storage

import (
"encoding/json"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"log"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion storage/storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
package storage

import (
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"reflect"
"testing"
"time"
Expand Down
4 changes: 2 additions & 2 deletions sync/algo.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package sync

import (
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/storage"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/storage"
)

// Sync updates the stored state in passed storage.Storage for the user issuing the sync request. If something fails it
Expand Down
4 changes: 2 additions & 2 deletions sync/algo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
package sync

import (
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/storage"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/storage"
"testing"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion sync/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package sync

import (
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"github.com/lestrrat-go/jwx/jwa"
"github.com/lestrrat-go/jwx/jwk"
"github.com/lestrrat-go/jwx/jwt"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"log"
"net/http"
"path/filepath"
Expand Down
4 changes: 2 additions & 2 deletions sync/conflict.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package sync

import (
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/storage"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/storage"
"sort"
)

Expand Down
4 changes: 2 additions & 2 deletions sync/conflict_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package sync

import (
"fmt"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/storage"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/storage"
"reflect"
"testing"
"time"
Expand Down
4 changes: 2 additions & 2 deletions sync/handle.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
package sync

import (
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/data"
"git.rwth-aachen.de/computer-aided-synthetic-biology/bachelorpraktika/2020-67-timewarrior-sync/timew-sync-server/storage"
_ "github.com/lestrrat-go/jwx"
"github.com/timewarrior-synchronize/timew-sync-server/data"
"github.com/timewarrior-synchronize/timew-sync-server/storage"
"io"
"io/ioutil"
"log"
Expand Down

0 comments on commit 0e2fa08

Please sign in to comment.