Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2118d36
V2.0 kickoff
faisaltheparttimecoder Feb 8, 2020
be043bb
Delete clean.sh
faisaltheparttimecoder Feb 8, 2020
d9fee7b
Update random data generator functions
faisaltheparttimecoder Feb 8, 2020
98a4fa1
Cleanup & Refactor Randomizer code
faisaltheparttimecoder Feb 8, 2020
44bcc7a
Mocking Data is complete
faisaltheparttimecoder Feb 9, 2020
bef1a9a
Add option to ignore creating constraints and also enable no prompt o…
faisaltheparttimecoder Feb 21, 2020
6339b7b
Code cleanup and update comment
faisaltheparttimecoder Feb 21, 2020
3eeb39f
Code CleanUp
faisaltheparttimecoder Feb 21, 2020
77b40fe
Code cleanup
faisaltheparttimecoder Feb 21, 2020
00030ac
Finish the creation of PK and Unique Violation
faisaltheparttimecoder Feb 21, 2020
d147670
Beautify SQL Query
faisaltheparttimecoder Feb 21, 2020
41601e2
Ported the code to fix foriegn key constraints
faisaltheparttimecoder Feb 21, 2020
14851d0
Now you can mock all the tables by schema
faisaltheparttimecoder Feb 21, 2020
841309d
Custom loading
faisaltheparttimecoder Feb 23, 2020
9b5fe4a
Script to build the package for various OS platform
faisaltheparttimecoder Feb 23, 2020
0dfb816
Upload README
faisaltheparttimecoder Feb 23, 2020
98ad981
Update README.md
faisaltheparttimecoder Feb 23, 2020
1be3176
Update README.md
faisaltheparttimecoder Feb 23, 2020
2871bbf
format correction
faisaltheparttimecoder Feb 23, 2020
b0bf773
Update README.md
faisaltheparttimecoder Feb 23, 2020
e4a1cc5
Minor adjustments
faisaltheparttimecoder Feb 23, 2020
e6a5e68
format the demo database
faisaltheparttimecoder Feb 23, 2020
ce7c7ac
Update examples
faisaltheparttimecoder Feb 23, 2020
b40f5c7
Add toc to readme
faisaltheparttimecoder Feb 23, 2020
ee2afaa
Update README.md
faisaltheparttimecoder Feb 23, 2020
4f5b93d
Update README.md
faisaltheparttimecoder Feb 23, 2020
c4345d8
Formatting code
faisaltheparttimecoder Feb 23, 2020
60640cf
Update README.md
faisaltheparttimecoder Feb 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

# Local drive
.idea/
mockd_*.sql
clean.sh
vendor
run_dev.sh
288 changes: 288 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/go-pg/pg"
version = "8.0.6"

[[constraint]]
name = "github.com/google/uuid"
version = "1.1.1"

[[constraint]]
branch = "master"
name = "github.com/icrowley/fake"

[[constraint]]
branch = "master"
name = "github.com/k0kubun/go-ansi"

[[constraint]]
name = "github.com/schollz/progressbar"
version = "2.15.0"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.4.2"

[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.5"

[[constraint]]
name = "github.com/spf13/viper"
version = "1.6.2"

[prune]
go-tests = true
unused-packages = true
Loading