brunobuddy
brunobuddy
MManifest
Created by Classified (C Hilde) on 2/20/2025 in #questions-🙋
Postgres envs
@Classified (C Hilde) not really, what is your use case ? You can activate SSL or not in order to make it work with remote and local DBs but that's it
9 replies
MManifest
Created by Classified (C Hilde) on 2/20/2025 in #questions-🙋
Postgres envs
Oh you are right I forgot it !! Thank you I will add it next week
9 replies
MManifest
Created by Ararat Martirossyan on 2/5/2025 in #questions-🙋
Data cleaned-up after each deploy
@Stefano Lab we are on it ! It will be available next week
10 replies
MManifest
Created by Classified (C Hilde) on 2/20/2025 in #questions-🙋
Postgres envs
Hello @Classified (C Hilde) it seams that the credentials are not used correctly. Are you using Postgres in local ? If this is the case this is a possible .env file:
DB_CONNECTION=postgres

DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE=manifest
DB_CONNECTION=postgres

DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE=manifest
Explanation: - DB_HOST is the server name: localhost in local or it could be an URL if in remote - DB_PORT should be a number (default 5432) - DB_USERNAME and DB_PASSWORD are usually postgres by defaul on local - DB_SSL was omitted (default false) as there is no SSL certificate on local (set to true if using remote managed DBs) - DB_PATH is only for SQlite so it should not be specified. Here is the complete documentation: https://manifest.build/docs/config#database Let me know how it goes !
9 replies
MManifest
Created by Ararat Martirossyan on 2/5/2025 in #questions-🙋
Data cleaned-up after each deploy
I added it to our backlog
10 replies
MManifest
Created by Blaise on 2/7/2025 in #questions-🙋
Does Manifest supports server less deployment ?
@Blaise the PR with S3 storage is curently on validation and should be ready very soon. Do you use AWS S3 or another service ?
7 replies
MManifest
Created by Blaise on 2/7/2025 in #questions-🙋
Does Manifest supports server less deployment ?
Hello @Blaise unforunately not yet for both. You can switch to Postgres and go to for example neon.tech to host your DB and we are currently working on S3 storage. Should come on the following weeks ! Sorry for the delay
7 replies
MManifest
Created by Ararat Martirossyan on 2/5/2025 in #questions-🙋
Data cleaned-up after each deploy
Hello @Ararat Martirossyan we just published a new version (https://github.com/mnfst/manifest/releases/tag/manifest%404.7.0) with PostgreSQL compatibility in order to have DB persistence. It's easy to setup and does not change anything on the app level, you can use it even if not familiar with Postgres. Indeed most Platform-as-a-Service services (like DO app platform) use ephemeral data that gets deleted after each deploy/restart. This is not the case in traditional VM hosting (DO droplet) or bare metal servers. We still have the issue for file/image uploads (if you use those property types) and we are currently working on an adapter for S3 storage services for data persistence regarding files. Let me know if it does the job ! Quick note: Sqlite on S3 is not a good idea as Manifest would need to download and upload the whole DB at each write operation.
10 replies
MManifest
Created by Blaise on 2/7/2025 in #questions-🙋
Does Manifest supports server less deployment ?
Hello @Blaise sorry for the delay, it depends on what you expect: if you want to use Astro SSG with Manifest you can run Manifest locally and edit your data and then build your Astro static website. However this method is not using a live API for the data. If you want to update your content, even a single coma, you will need to build again and deploy. This method is really adapted for small websites/apps that do not change often. It offers great performance for users and simplifies hosting. If you want to have a "real" API with live create/read operations you will need to have some storage for the database. You can go Serverless + a DBaaS like neon.tech for example. What's your usual provider ?
7 replies
MManifest
Created by BotProgrammer on 2/8/2025 in #questions-🙋
Vercel
Hello @BotProgrammer if I am correct Vercel is mostly for front-end (unless some specific nextjs backend logic) and will not be able to power Manifest database and storage. We are working this week on preparing material to help deployments on popular platforms. Which one would you prefer ? Please answer here https://github.com/mnfst/manifest/discussions/310
2 replies
MManifest
Created by aitorroma on 2/5/2025 in #questions-🙋
Exploring Manifest's Potential: Typebot API Use Case & Feature Suggestions
Hello @aitorroma thank you very much for your message !! The features requested are really nice. Some of them are on our roadmap and some of them are already developped. We have endpoints now that you can use for performing calculations or custom logic in JavaScript: https://manifest.build/docs/endpoints Let me know if you have any question !
5 replies
MManifest
Created by jpp244 on 11/16/2024 in #questions-🙋
npx add-manifest stucks on 'Build the database...'
If it still not works you can clone a template: https://github.com/mnfst/frontend-examples
9 replies
MManifest
Created by jpp244 on 11/16/2024 in #questions-🙋
npx add-manifest stucks on 'Build the database...'
@imjonas this is weird. Can you ensure that the folder has the correct rights ? Are you on Mac ?
9 replies
MManifest
Created by Cheri on 2/1/2025 in #questions-🙋
can i have a roadmap to build a py version
Hello @cheri we have a roadmap on the homepage: https://manifest.build/ Not so much in it as we are still in an exploring phase. Our current main topic is integrating developer's custom logic. After that we will work on improving stability. What kind of Phyton version do you want to build ? You want to replace the YAML ?
2 replies
MManifest
Created by Classified (C Hilde) on 1/31/2025 in #questions-🙋
Custom Logic
Hello @Classified (C Hilde) ! Yes, we started with webhooks, and the custom endpoints PR is in validation (maybe release next week ?). Cron jobs will follow in a couple of weeks along with middlewares.
4 replies
MManifest
Created by Father Friday on 1/22/2025 in #questions-🙋
Blank Admin Panel
@Father Friday you can update the "manifest" version to "4.3.3" on your package.json or reo npx add-manifest@latest and it will work ! Thank you for taking the time to report the issue 👍
4 replies
MManifest
Created by Father Friday on 1/22/2025 in #questions-🙋
Blank Admin Panel
@Father Friday it is a bug I will try to fix it today https://github.com/mnfst/manifest/issues/269
4 replies
MManifest
Created by Father Friday on 1/17/2025 in #questions-🙋
API Endpoint to return all singles
If you have a "Page" entity you can fetch all records with the "list" endpoint or JS SDK function and have Astro generate one page per record
8 replies
MManifest
Created by Father Friday on 1/17/2025 in #questions-🙋
API Endpoint to return all singles
@Father Friday you should not give access to the YAML file to someone to create a page, Manifest has an admin panel for that, you can give them credentials to the admin panel instead. YAML file => DB structure (among others) Admin panel => Record management (CRUD)
8 replies
MManifest
Created by Father Friday on 1/17/2025 in #questions-🙋
API Endpoint to return all singles
Hi @Father Friday , technically you could call the /api/manifest (https://demo-singles.manifest.build/api#/Manifest/get_api_manifest) to get a list of all entities and then return the slugs of it. However on many use cases it can make sense to hard code those slugs as you are going to use them in the interface and give them individual names. What is the reason to have those slugs dynamic ?
8 replies