c9e10b85b8dca76fedcca497ff6db569ad99020e
PS-Discord-BotBuilder
This is one of my personal projects, and I plan to update it for a while to come. This is a node.js webserver, which is hosting a website, with which you can "make" a discord bot.s
Node.js and NPM Setup
When using this website, make sure you have Node.js installed. When you are sure it's installed, clone the repository, and open a terminal in the folder. Then run the following command to install all required NPM packages
npm install archiver bcrypt body-parser express-session express fs-extra mysql path
Database Setup
To get started with the project, you'll need to set up the database. Follow these steps:
-
Database Creation:
- Make sure you have a MySQL server installed on your machine. If not, you can download and install it from MySQL Downloads.
- Create a new database for your project.
-
Importing Tables::
- Import the db-config.sql file into your database using the following command:
mysql -u {your_username} -p {your_database_name} < /path/to/db-config.sql - If you want to know more about the exact database structure, you can always take a look at the contents of
db-config.sql
- Import the db-config.sql file into your database using the following command:
-
Final Configuration:
- Update the content in the config.json file. If you don't have it, feel free to make use of the config.json.example for the layout of the JSON file.
Running the Application:
With the database set up and configured, you should be able to run your application. To run it, please use the following command
./startServer.sh
Description
Languages
JavaScript
77.4%
CSS
16.5%
HTML
6%