Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

My cmd says that can't read the config file #15

Closed
ztKaizen opened this issue Jun 30, 2022 · 26 comments
Closed

My cmd says that can't read the config file #15

ztKaizen opened this issue Jun 30, 2022 · 26 comments
Labels
bug Something isn't working

Comments

@ztKaizen
Copy link

No description provided.

@codetheweb
Copy link
Owner

Could you please provide more details? What's the full output?

@nodgear
Copy link

nodgear commented Jul 21, 2022

I know what his issue is:
He's running Aoede built from source.
When building from source i got the same result when running aoede, it would say my config.toml file is nowhere to be found (Arch linux x64)

This doesn't happen when exporting vars instead of using the toml file.

@codetheweb
Copy link
Owner

It might be expecting config.toml to be next to the binary in target/debug or target/release.

@nodgear
Copy link

nodgear commented Jul 28, 2022

Not the case either.
image

@codetheweb
Copy link
Owner

It's not working for me either.

@CloudyByte any ideas why it's not working?

@codetheweb codetheweb added the bug Something isn't working label Aug 3, 2022
@oleggtro
Copy link
Contributor

oleggtro commented Aug 3, 2022

Could you please show us your config file?
pls censor the tokens ofc

@nodgear
Copy link

nodgear commented Aug 3, 2022

Could you please show us your config file? pls censor the tokens ofc

DISCORD_TOKEN="<CENSORED>.<CENSORED>.<CENSORED>"
SPOTIFY_USERNAME="3a3a4glj34s40sw2ppvd1642l"
SPOTIFY_PASSWORD="<CENSORED>"
DISCORD_USER_ID="175314117924487168"

@oleggtro
Copy link
Contributor

oleggtro commented Aug 4, 2022

Mhm that sounds weird and is definitely a bug. I was able to reproduce it though, so not totally bad news.
I'll look into it

@oleggtro
Copy link
Contributor

oleggtro commented Aug 4, 2022

should be fixed in #18.
can you please confirm the fix @nodgear?

codetheweb pushed a commit that referenced this issue Aug 9, 2022
* fix: deserialize config in capslock

* fix: beautify fix
@codetheweb
Copy link
Owner

This should be fixed in v0.4.1, please try it out when you get a chance. :)

@jacksight
Copy link

I got this issue,too. I'm using v0.4.1 currently

@nodgear
Copy link

nodgear commented Aug 10, 2022

I got this issue,too. I'm using v0.4.1 currently

Have you moved the config file to the same place where the binary is?

@oleggtro
Copy link
Contributor

Did the fix work for you @nodgear?

@nodgear
Copy link

nodgear commented Aug 12, 2022

I will be testing right now, had no time to test previously

Edit:
Just built again from source (release)

nodge@hsv:release main ✗ 22h23m ✖ ➜ ./aoede
Couldn't read config
Error: Error { tag: Tag(Default, 1), profile: Some(Profile(Uncased { string: "default" })), metadata: Some(Metadata { name: "TOML file", source: Some(File("/home/nodge/Development/aoede/target/release/config.toml")), provide_location: Some(Location { file: "src/lib/config.rs", line: 19, col: 14 }), interpolater:  }), path: ["DISCORD_USER_ID"], kind: InvalidType(Str("175314117924487168"), "u64"), prev: None }

file list:

total 32468
-rwxr-xr-x   2 nodge nodge 33154328 ago 11 21:28 aoede
-rw-r--r--   1 nodge nodge      190 ago 11 21:28 aoede.d
drwxr-xr-x 103 nodge nodge     4096 ago 11 21:21 build
-rw-r--r--   1 nodge nodge      198 ago 11 21:29 config.toml
drwxr-xr-x   2 nodge nodge    65536 ago 11 21:28 deps
drwxr-xr-x   2 nodge nodge     4096 ago 11 21:21 examples
drwxr-xr-x   2 nodge nodge     4096 ago 11 21:21 incremental

image

@oleggtro
Copy link
Contributor

Oops I forgot to change the sample config after the patch.
You need to remove the quotes around the user id

@jacksight
Copy link

I open the aoede file on my mac, and then it opens the terminal, and my config.toml is in the release folder. When I execute it, it says:
Couldn't read config
Missing field: 'DISCORD_TOKEN'

Saving session...completed.

I don't know what happened...

This is my config file:
DISCORD_TOKEN= xxxxxxxxxxxxxxxxxxxxxxxx
SPOTIFY_USERNAME= xxxxxxxx@xxxxx.com
SPOTIFY_PASSWORD= xxxxxxxxx
DISCORD_USER_ID= xxxxxxxxxxxxxx

@oleggtro
Copy link
Contributor

The config is supposed to look like this:

DISCORD_TOKEN="Mjk3ODQzNDgzNzgzODU2MjMw.SxDNko.UOdRWlDuz_lFrTOeQWEuzKGBmDFdVTGns3jd4o"
SPOTIFY_USERNAME="mail@example.com"
SPOTIFY_PASSWORD="MySpotifyPassword"
DISCORD_USER_ID=301780655019130880

@jacksight
Copy link

I've tried both ways, it's not working

@oleggtro
Copy link
Contributor

Well, can you provide error logs? Please copy paste the example config above and only replace the values in there. Leave the quotes as they are.

@jacksight
Copy link

jacksight commented Aug 13, 2022

DISCORD_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
SPOTIFY_USERNAME="xxxxxxxxxxxx@hotmail.com"
SPOTIFY_PASSWORD="xxxxxxxxxxxxxxx"
DISCORD_USER_ID=476622988385714176

(base) jacksight@jacksight-MacBook-Pro ~ % /Users/jacksight/aoede/target/release/aoede ; exit;
Couldn't read config
Missing field: 'DISCORD_TOKEN'

Saving session...completed.

@jacksight
Copy link

So...... What seems to be the problem?

@codetheweb
Copy link
Owner

That looks right to me. Are you able to try passing in via the environment instead?

@ztKaizen ztKaizen closed this as not planned Won't fix, can't repro, duplicate, stale Dec 6, 2022
@Knopfi02
Copy link

same problem :(

@oleggtro
Copy link
Contributor

Are you using a mac as well? @Knopfi02

@Knopfi02
Copy link

No, I'm on windows @CloudyByte

@oleggtro
Copy link
Contributor

Are you executing the binary via double-clicking it? If yes, please try opening via command line/powershell.
Note: you need to be in aoedes root directory for this to work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

6 participants