-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from sam123114/6-write-readme-for-the-project
[6] Write README for the project
- Loading branch information
Showing
1 changed file
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,56 @@ | ||
# LolQuizz | ||
|
||
This is a project I made for fun. If you have any suggestions or want to update it youself, you can create a issue or a pull request. | ||
LolQuizz is a project created with the goal of creating a Discord bot that will provide mini-games as well as fun and useful commands related to the league of legends game and it's lore. | ||
|
||
## Prerequisites | ||
|
||
- Git | ||
- Node.js | ||
|
||
## Installation | ||
|
||
Clone the project locally | ||
|
||
- using `HTTPS` | ||
|
||
```bash | ||
git clone https://github.com/sam123114/LolQuizz.git | ||
``` | ||
|
||
- using `SSH` | ||
|
||
```bash | ||
git clone git@github.com:sam123114/LolQuizz.git | ||
``` | ||
|
||
Head into the `LolQuizz` folder | ||
|
||
```bash | ||
cd LolQuizz/ | ||
``` | ||
|
||
Install the dependencies | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
Create `.env` file | ||
|
||
```text | ||
DISCORD_TOKEN="{YOUR_DISCORD_TOKEN}" | ||
``` | ||
|
||
You can now start the bot by using one of those commands: | ||
|
||
- Development (Using [nodemon](https://www.npmjs.com/package/nodemon)) | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
- Production | ||
|
||
```bash | ||
npm run stable | ||
``` |