webfast 0.1.78 → 0.1.79

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -6,6 +6,9 @@ WebFast! is a lightweight, model-based framework developed by Hybrid Institute.
6
6
 
7
7
  WebFast! provides a flexible and intuitive platform for creating web applications without the need for extensive coding. It empowers users to leverage a model-based approach, making it accessible to a broader audience, including those with limited coding experience.
8
8
 
9
+ ## Telegram Community Group
10
+ Join the [WebFast! Telegram Community](https://t.me/webfast_community) for quick questions and further discussion of development of the webFast! Framework.
11
+
9
12
  ## Features
10
13
 
11
14
  - **Lightweight**: Keep your projects streamlined with a minimalistic approach.
@@ -117,6 +120,8 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
117
120
 
118
121
  For questions or feedback, please feel free to [contact me on LinkedIn](https://linkedin.com/in/kaigartner). You can also reach out to me on Instagram: [@kaigartner](https://instagram.com/kaigartner).
119
122
 
123
+
124
+
120
125
  ---
121
126
 
122
127
  **Hybrid Institute** - Empowering the future with innovative solutions.
@@ -7,7 +7,7 @@ const client = new MongoClient(uri);
7
7
 
8
8
  module.exports = {
9
9
  uploadBuffer: async function (progam,buffer, filename, metadata = {}, callback) {
10
- const dbName = 'eventgo';
10
+ const dbName = process.env.dbName;
11
11
  await client.connect();
12
12
 
13
13
  const db = client.db(dbName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webfast",
3
- "version": "0.1.78",
3
+ "version": "0.1.79",
4
4
  "description": "WebFast! Bot Application, including TON mini-apps for makign it easy and fast to build ini-apps",
5
5
  "main": "index.js",
6
6
  "repository": {