Skip to content

Commit

Permalink
✨ version: 1.6.0-b
Browse files Browse the repository at this point in the history
  • Loading branch information
skillzl committed Nov 7, 2023
1 parent 18b91e3 commit 93bd35e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Current version it is not available for production deployment.
- Modular features with optional congifuration.
- Experience system with levels and xp.
- Popular canva design for rank and profile command.
- Web application (dashboard) for optional configuration settings.
## Node start guide

Expand All @@ -27,7 +28,7 @@ npn run start [cls && node bot.js] or nodemon
## Dashboard
<img src="./assets/github/dashboard.png" width="1042">

> **Release**: No estimated time of release, this may be changed later.
> **Live**: Beta release https://eres.fun
> **Tip**: Visit this repository to check out the latest version.
## Envoirement settings

Expand Down Expand Up @@ -57,6 +58,6 @@ SUPPORT_SERVER=
DEVELOPER_ID=
```
> **Note**
Envoirement settings can be changed here: [.env.example](https://github.com/skillzl/eres/blob/main/.env.example)
Envoirement settings need to be in a ".env" file.
## License
This project is licensed under the Apache License 2.0 License - see the [LICENSE](https://github.com/skillzl/eres/blob/main/LICENSE) file for details.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eres-main",
"version": "1.5.0-b",
"version": "1.6.0-b",
"description": "🍍 Eres; new Discord application with modern web dashboard and new features for your community.",
"main": "bot.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ module.exports.load = async (client) => {
passport.serializeUser((user, done) => {
done(null, user);
});

passport.deserializeUser((obj, done) => {
done(null, obj);
});

passport.use(new Strategy({
clientID: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
Expand Down

0 comments on commit 93bd35e

Please sign in to comment.