-
Notifications
You must be signed in to change notification settings - Fork 0
[#255] initDB set default to true #256
base: develop
Are you sure you want to change the base?
Conversation
@@ -16,7 +16,7 @@ object Main extends IOApp { | |||
final case class Params( | |||
updatePackages: Boolean = false, | |||
downloadMeta: Boolean = false, | |||
initDB: Boolean = false, | |||
initDB: Boolean = true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's not enough to consider this task completed. At least we should delete the make table
task from code, Makefile, Readme, docker files, etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, i removed usages of -i
flag
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make sure that you removed all usages of this command. The most important place where it mentioned is docker-stack-compose.yml
README.md
Outdated
@@ -40,7 +38,7 @@ running. The port can be changed: | |||
$ make serve port=7000 | |||
|
|||
Note: if you get an error at the `make tables` stage, you probably haven't |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: if you get an error at the `make tables` stage, you probably haven't | |
Note: if you get an error at the `make serve` stage, you probably haven't |
README.md
Outdated
@@ -30,8 +30,6 @@ You can run Postgres by yourself, but it's better to use Docker. If you have | |||
Docker installed, you can do this: | |||
|
|||
$ make build # Build the project | |||
$ make db # Download and start Postgres (wait a bit after this step) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need this step, roll it back, please.
@avasyukhin Please, update the |
|
Yes that's right. You can take a command to deploy from the circkeci |
Ok, do we need to leave compose commands in readme or remove it? |
@Kabowyad PR with issue now pinned to you |
Closes #255