frissyn / ReplCustoms

A database of users, posts, and comments from the ReplTalk API
https://rc.frissyn.repl.co
MIT License
15 stars 4 forks source link

App key #2

Closed Agoo1234 closed 4 years ago

Agoo1234 commented 4 years ago

If I was to copy this and modify it, what would I put in the "KEY" variable in my .env file and what is it used for?

frissyn commented 4 years ago

You would just need to generate a hex token key for yourself in python.

Example:

import secrets

key = secrets.token_hex()
Agoo1234 commented 4 years ago

thanks