austintgriffith / twitter-bot-wallet-dropper

DMs a preloaded burner wallet via link triggered from DM or tweet
MIT License
12 stars 5 forks source link

Allow for Twitter Configuration #5

Open borwahs opened 5 years ago

borwahs commented 5 years ago

The server should allow for configuration on startup for bot reuse.

PeterTheOne commented 5 years ago

Twitter config is at least:

  consumer_key:         '...',
  consumer_secret:      '...',
  access_token:         '...',
  access_token_secret:  '...',

(in user context, which means that it is already tied to specific account that you then don't need to specify.)

PeterTheOne commented 5 years ago

I like https://github.com/lorenwest/node-config for configuration files or https://github.com/motdotla/dotenv .

borwahs commented 5 years ago

I like https://github.com/lorenwest/node-config for configuration files or https://github.com/motdotla/dotenv .

Yep! I think dotenv would be great.