fix(archives): fix token going out of screen

This commit is contained in:
Jean-Philippe Sirois
2020-10-05 09:36:09 -04:00
parent 24ea47c4cc
commit c2782ab589
+4 -4
View File
@@ -58,14 +58,14 @@ Now let's create a few files that we'll need.
The `.env` file here will be used to store our token. **If using git make sure you gitignore this file** The `.env` file here will be used to store our token. **If using git make sure you gitignore this file**
Open up the `.env` file and fill it out using the information Open up the `.env` file and fill it out using the information
``` ```env
DISCORD_TOKEN=your_token DISCORD_TOKEN=your_token
``` ```
// Example For example:
``` ```env
DISCORD_TOKEN=NzEyNTgwNDYyMzAzOTAzODA2.XsToSQ.ef6y_53oQbNCpNsDgWoWu7QSPU4 (not a real token) DISCORD_TOKEN=NzEyNTgwNDYyMzAzOTAzODA2.XsToSQ.ef6y_53oQbNCpNsDgWoWu7QSPU4
``` ```
The `index.js` file is where all our code goes. The `index.js` file is where all our code goes.