Closed gesslar closed 4 months ago
Instead of that yarn option you can also cd assets && yarn install && cd ..
As it stands now you need to set up the entire application in order for the web client to work, it's all tied together due to the server-side component.
The issue with ecto is likely because you don't have a super user named as your whoami
with ident authentication. You can make config/dev.local.exs
with the following in it to suit your postgres set up.
config :grapevine_data, GrapevineData.Repo,
database: "grapevine_dev",
hostname: "localhost",
username: "changeme",
password: "changeme",
pool_size: 10,
log: false
Hopefully those are your only two issues. I haven't done any elixir upgrades recently so there might be other small problems.
I want to help contribute to the web client, and I guess this is the only way to get it running.
So I followed the instructions laid out. I have all the deps installed.
Under Setup, when I get to
yarn --cwd assets
, I get:I'm not really sure what the above is supposed to do, so I powered on anyway, and tried to run
mix ecto.reset
and got the following results:This all seems like a lot to just work on the client. Am I doing something wrong?