<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Appsemble</title>
	<atom:link href="https://appsemble.com/en/feed/" rel="self" type="application/rss+xml" />
	<link>https://appsemble.com</link>
	<description>Open source low-code platform</description>
	<lastBuildDate>Wed, 04 Jun 2025 19:05:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://appsemble.com/wp-content/uploads/2019/03/cropped-Appsemble-logo-512-1-32x32.png</url>
	<title>Appsemble</title>
	<link>https://appsemble.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Appsemble Architecture Changes In 2025</title>
		<link>https://appsemble.com/en/appsemble-architecture-changes-in-2025/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=appsemble-architecture-changes-in-2025</link>
		
		<dc:creator><![CDATA[vasil]]></dc:creator>
		<pubDate>Tue, 17 Dec 2024 12:36:18 +0000</pubDate>
				<category><![CDATA[Geen categorie]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=2476</guid>

					<description><![CDATA[<p>What we have now Appsemble in its current form is what you would call a monolith. We have one big server, which connects to a single database and exposes an Application Programming Interface (API). This self-contained unit can be deployed as one whole. We have the Appsemble Studio, which serves as a central point for &#8230;</p>
<p>The post <a href="https://appsemble.com/en/appsemble-architecture-changes-in-2025/">Appsemble Architecture Changes In 2025</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<h2 class="wp-block-heading">What we have now</h2>



<p>Appsemble in its current form is what you would call a monolith. We have one big server, which connects to a single database and exposes an Application Programming Interface (API). This self-contained unit can be deployed as one whole.</p>



<p>We have the <strong>Appsemble Studio</strong>, which serves as a central point for app development and management. Apps are served on their own domain, but they are still served from the <strong>Appsemble Server</strong> and use <em>it</em> to get their data.</p>



<p>Once an <strong>Appsemble App</strong> is published, its structure is stored in the database as an app definition, which is parsed on the client to fetch the needed <strong>Appsemble Blocks</strong> from the Appsemble Server and display them on the screen when a user visits an app.</p>



<h3 class="wp-block-heading">App Data</h3>



<p>App data comes in two forms &#8211; <strong>Resources</strong> (structured app data) and <strong>Assets</strong> (files).</p>



<p>Assets are stored as binary data directly in the database, using <a href="https://www.postgresql.org/docs/current/datatype-binary.html">PostgreSQL&#8217;s BLOB</a> column type. When an asset is fetched from within an app, it is being loaded in memory on the Appsemble Server and then returned to the client at once, not utilizing any streaming techniques. This puts heavy load on the main Appsemble Server.</p>



<p>Resources are currently stored as <a href="https://en.wikipedia.org/wiki/JSON">JSON</a> objects in the database, using <a href="https://www.postgresql.org/docs/current/datatype-json.html">PostgreSQL&#8217;s JSONB</a> column type. The structure of resources and the connections between them is defined in the app definition. We are not utilizing the relational capabilities of our database to enforce field type constraints and foreign key constraints &#8211; that is all done programmatically on the Appsemble Server. This also makes it difficult and inefficient to query paginated resource data and search it at the same time.</p>



<p>Data for all published Appsemble Apps is stored in the same main database, meaning that there is no isolation of data per app.</p>



<h2 class="wp-block-heading">How we plan to improve things</h2>



<p>While the current setup works and has been sufficient for a while, there are a lot of potential improvements that can be made. In 2025 we are planning to improve the architecture of the Appsemble platform as a whole, aiming at isolation of data and performance improvements. This is a big topic that should be tackled incrementally. The steps towards that, as a general plan, are as follows:</p>



<h3 class="wp-block-heading">Better Asset Storage</h3>



<p>We are planning to introduce support for S3 file storage so we can utilize streaming capabilities and image and video compression/decompression, reducing the load on the main Appsemble Server in the process <a href="https://gitlab.com/appsemble/appsemble/-/issues/1722">https://gitlab.com/appsemble/appsemble/-/issues/1722</a> [upd Feb 2025: done]</p>



<h3 class="wp-block-heading">Utilize Relational Databases for App Resources</h3>



<p>Each resource type in an app should have its own table. Tables can be created dynamically, based on the resource definitions in the app definition. This will allow us to efficiently apply field and relational constraints on resources and perform more optimized queries. <a href="https://gitlab.com/appsemble/appsemble/-/issues/1731">https://gitlab.com/appsemble/appsemble/-/issues/1731</a>, <a href="https://gitlab.com/appsemble/appsemble/-/issues/1496">https://gitlab.com/appsemble/appsemble/-/issues/1496</a></p>



<h3 class="wp-block-heading">Dedicated App Databases</h3>



<p>We want to isolate data for different apps from one another. <a href="https://gitlab.com/appsemble/appsemble/-/issues/1629">https://gitlab.com/appsemble/appsemble/-/issues/1629</a>  [upd June 2025: done]. We are also considering shared databases for groups of related apps, that need to share data between each other. Each app would be configurable to connect to an Appsemble hosted database or an external database via a database connection string.</p>



<h3 class="wp-block-heading">Dedicated App Server and API</h3>



<p>The idea is for each app to have its own App Server, which would be separate from the main Appsemble Server and will connect to its own database.</p>



<h3 class="wp-block-heading">Standalone App Deployments</h3>



<p>The idea is, when an app is being published, to bundle all app related code (Appsemble Blocks, generic UI code) in a self-contained static bundle, that can be served on its own, for example in a Kubernetes pod. This should reduce the load on the main Appsemble Server and will enable each app to be independently scalable based on the load on it. <a href="https://gitlab.com/appsemble/appsemble/-/issues/1628">https://gitlab.com/appsemble/appsemble/-/issues/1628</a></p>



<p>You can track the progress in the linked GitLab issues.</p><p>The post <a href="https://appsemble.com/en/appsemble-architecture-changes-in-2025/">Appsemble Architecture Changes In 2025</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Spring update &#8211; What&#8217;s new in Appsemble</title>
		<link>https://appsemble.com/en/spring-update-whats-new-in-appsemble/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=spring-update-whats-new-in-appsemble</link>
					<comments>https://appsemble.com/en/spring-update-whats-new-in-appsemble/#respond</comments>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Thu, 16 May 2024 10:24:43 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Tech]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=2372</guid>

					<description><![CDATA[<p>Welcome to the Spring 2024 update, where we share recent developments and future plans. Stay up to date on news automatically? Subscribe to our newsletter. What you can expect: Launch of openapps.nl &#8211; Apps for municipalities Discover OpenApps, a collection of apps developed by various municipalities, now available to everyone as fully working demos. These apps &#8230;</p>
<p>The post <a href="https://appsemble.com/en/spring-update-whats-new-in-appsemble/">Spring update – What’s new in Appsemble</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Welcome to the Spring 2024 update, where we share recent developments and future plans. Stay up to date on news automatically? Subscribe to our <a href="https://appsemble.com/en/newsletter-subscription/">newsletter</a>. </p>



<p>What you can expect:</p>



<ul class="wp-block-list">
<li>Launch of openapps.nl &#8211; Apps for municipalities.</li>



<li>Presence of Appsemble at the open-source event T-DOSE.</li>



<li>New functionalities on our platform.</li>



<li>Appsemble training &#8211; learn to build apps yourself.</li>
</ul>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-e94e33decc34695115a5d5e3eaac4b86"><a href="https://appsemble.com/lancering-openapps-nl/">Launch of openapps.nl &#8211; Apps for municipalities</a></h2>



<p></p>



<figure class="wp-block-image"><img fetchpriority="high" decoding="async" width="1600" height="1142" src="https://appsemble.com/wp-content/uploads/2024/05/openapps-flyer.jpeg" alt="" class="wp-image-2363" srcset="https://appsemble.com/wp-content/uploads/2024/05/openapps-flyer.jpeg 1600w, https://appsemble.com/wp-content/uploads/2024/05/openapps-flyer-768x548.jpeg 768w, https://appsemble.com/wp-content/uploads/2024/05/openapps-flyer-1536x1096.jpeg 1536w, https://appsemble.com/wp-content/uploads/2024/05/openapps-flyer-84x60.jpeg 84w" sizes="(max-width: 1600px) 100vw, 1600px" /></figure>



<p>Discover <a href="https://openapps.nl/">OpenApps</a>, a collection of apps developed by various municipalities, now available to everyone as fully working demos. These apps are made for Demodam, a fictional municipality. Discover which Common Ground components are already operational and how they work seamlessly together. See how digital services work for both citizens and employees, and gain insight into the possibilities for further development.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-14906f6d258c639c79b8a2aeb6bb3e5b"><a href="https://t-dose.org/venue/">Appsemble at T-DOSE</a></h2>



<p>On June 1 and 2, we will be present at the <a href="https://t-dose.org/venue/">T-DOSE event.</a> at the Weeffabriek in Geldrop. We will discuss various aspects of low-code development, including the importance of open-source and our experiences with the municipality of Amsterdam as a launching customer. Also expect insights into technical topics such as designing our low-code DSL and automated tests for apps.</p>



<h2 class="wp-block-heading">New platform functionalities.</h2>



<p>We are introducing some additions to our platform. The power lies in the bundling of it: Deployment of AI, but everything on your own infrastructure with full retention of privacy.</p>



<h3 class="wp-block-heading"><a>The first AI building block</a></h3>



<p>When we think of AI, we think of OpenAI. This is also our&nbsp;<a href="https://appsemble.app/en/blocks/@appsemble/openai">first AI-related block</a>. More advanced blocks will follow, such as AI Flow that can combine multiple LLMs (Large Language Models) to perform more complex tasks.</p>



<h3 class="wp-block-heading"><a>Own backend containers</a></h3>



<p>Although Appsemble is easy to link with external services, it can be nice that there can also be an own backend included in the already existing app hosting. Soon in Appsemble SAAS, but the code is already&nbsp;<a href="https://gitlab.com/groups/appsemble/-/epics/22">available</a></p>



<h3 class="wp-block-heading"><a>Small improvements</a></h3>



<p>Here are some important updates from the&nbsp;<a href="https://gitlab.com/appsemble/appsemble/-/blob/main/CHANGELOG.md">full list of additions and adjustments</a>:</p>



<ul class="wp-block-list">
<li>Applications can easily be shared from the app store.</li>



<li>Appsemble CLI has been further expanded.</li>



<li>More and better examples of actions.</li>



<li>Code examples in documentation are automatically validated so they always remain current.</li>



<li>App import and exports are more complete and now also include screenshots and the README.</li>



<li>Forms gained multiple options as input.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="452" height="51" src="https://appsemble.com/wp-content/uploads/2024/05/image-1.png" alt="" class="wp-image-2368"/></figure>



<ul class="wp-block-list">
<li>Apps can now also be published in a demo mode where the data is reset every night.</li>



<li>Improvements made for the internet.nl security report.</li>



<li>Optional fields in forms are now also displayed as such.</li>



<li>In the blocks catalog, words can now be searched.</li>



<li>In de blokken catalogus kan voortaan woorden gezocht.</li>
</ul>



<h2 class="wp-block-heading">Appsemble training &#8211; Learn to build apps yourself</h2>



<p>Recently, many possibilities have been added to Appsemble. We have set up a new course that starts in the fall in 3 half-days. For participants without technical experience, we build a number of small applications at a leisurely pace using the graphical environment. This includes: working with forms, database and an external data source. For participants with some technical baggage, we go through the above a bit faster and then go into depth on topics: modeling resources (database), linking external systems, developing own blocks in Javascript. Cases can be submitted in advance that we try to handle, we try to make it as useful and interactive as possible.</p>



<p>Starts in October 2024. Interested? Then email: <a href="mailto:support@appsemble.com">support@appsemble.com</a></p>



<h3 class="wp-block-heading"><a>Build apps yourself with help from Appsemble where needed</a></h3>



<p>Organizations are increasingly making the switch to low-code. Read more about it on&nbsp;<a href="https://opensource.pleio.nl/blog/view/8cde8368-1652-4408-9830-e06ba9a1fff1/gratis-low-code-appstore-dankzij-opensource-beleid-gemeenten">this blog</a>&nbsp;on pleio. Contact us for the possibilities. What works in practice is the purchase of a&nbsp;<em>hours strip card</em>. The hours can be spent as there is a need from an organization to:</p>



<ul class="wp-block-list">
<li>Support of employees with challenges during app development.</li>



<li>Online or offline Appsemble course. After this, you will already develop simple apps yourself.</li>



<li>Is an app or link too complex to develop yourself? Then we can do that on your behalf.</li>



<li>Haven-compatible hosting as SAAS or self-hosted, with SLA.</li>
</ul>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-9fde3082415af7ff7f5a06ac085b6172"><a>Roadmap for the coming period</a></h2>



<p>A visual representation of the&nbsp;<a href="https://gitlab.com/groups/appsemble/-/roadmap?state=all&amp;sort=START_DATE_ASC&amp;layout=MONTHS&amp;timeframe_range_type=CURRENT_YEAR&amp;progress=WEIGHT&amp;show_progress=true&amp;show_milestones=true&amp;milestones_type=ALL&amp;show_labels=false">roadmap</a>&nbsp;makes it clear what we are working on.</p>



<p>In addition, it is expected that we will publish a few more apps in the fall and winter and further Appsemble platform improvement in the shorter term as a result.</p><p>The post <a href="https://appsemble.com/en/spring-update-whats-new-in-appsemble/">Spring update – What’s new in Appsemble</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://appsemble.com/en/spring-update-whats-new-in-appsemble/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The development server is here</title>
		<link>https://appsemble.com/en/the-development-server-is-here/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-development-server-is-here</link>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Tue, 13 Jun 2023 14:50:32 +0000</pubDate>
				<category><![CDATA[Geen categorie]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=2135</guid>

					<description><![CDATA[<p>While building low-code apps, you might also want to change behavior in several of the building blocks you&#8217;re using. Experience so far has shown that building a more complex application touches about 5 blocks that need extra functionality for the app to perform just right. The open source blocks always allowed this, but using the &#8230;</p>
<p>The post <a href="https://appsemble.com/en/the-development-server-is-here/">The development server is here</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>While building low-code apps, you might also want to change behavior in several of the building blocks you&#8217;re using. Experience so far has shown that building a more complex application touches about 5 blocks that need extra functionality for the app to perform just right.</p>



<p>The open source blocks always allowed this, but using the new development server, your workflow is simplified dramatically. No need to re-publish modified blocks all the time. Just to try them out in your app instantly.</p>



<p>To get started right away, here are the <a href="https://gitlab.com/appsemble/appsemble#development-server">instructions</a>. Read on for more details.</p>



<p>The development server can create an app from a specified folder containing an <code><em>app-definition.yml</em></code><br>file. It will check what blocks are needed for the app and will try to load them from the local<br>workspaces, listed in the<em> <code>package.json</code></em> file in the root of the project, if they are present. This<br>way, all default Appsemble blocks shipped with Appsemble are loaded automatically.</p>



<p>Once the development server is started, making a change to a block’s code or styles will reflect in<br>the browser immediately after refreshing the page, without the need of increasing the block’s<br>version. Running docker database containers, creating a user account and creating an organization<br>are not needed.</p>



<p>App resources will be stored locally in the <code>/packages/cli/data.json</code> file. App assets and block<br>assets will be served from the local file system.</p>



<h2 class="wp-block-heading">Future roadmap</h2>



<p>One of the upcoming features for the development server will be hot reloading. More on what&#8217;s planned, see the <a href="https://gitlab.com/groups/appsemble/-/epics/10">epic</a>.</p>



<h2 class="wp-block-heading">Demo videos</h2>



<p>Starting the development server:</p>



<figure class="wp-block-video"><video height="1024" style="aspect-ratio: 1638 / 1024;" width="1638" controls src="https://appsemble.com/wp-content/uploads/2023/06/11.-New-Start.mp4"></video></figure>



<p>Changing a block has immediate effect in your app:</p>



<figure class="wp-block-video"><video height="1024" style="aspect-ratio: 1638 / 1024;" width="1638" controls src="https://appsemble.com/wp-content/uploads/2023/06/12.-New-Block-Change.mp4"></video></figure>



<p>Fetching remote blocks:</p>



<figure class="wp-block-video"><video height="1024" style="aspect-ratio: 1638 / 1024;" width="1638" controls src="https://appsemble.com/wp-content/uploads/2023/06/13.-New-Fetching-Remote-Blocks.mp4"></video></figure><p>The post <a href="https://appsemble.com/en/the-development-server-is-here/">The development server is here</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
		
		<enclosure url="https://appsemble.com/wp-content/uploads/2023/06/11.-New-Start.mp4" length="1895147" type="video/mp4" />
<enclosure url="https://appsemble.com/wp-content/uploads/2023/06/12.-New-Block-Change.mp4" length="1152253" type="video/mp4" />
<enclosure url="https://appsemble.com/wp-content/uploads/2023/06/13.-New-Fetching-Remote-Blocks.mp4" length="5121175" type="video/mp4" />

			</item>
		<item>
		<title>Side job / student assistant software engineering</title>
		<link>https://appsemble.com/en/side-job-student-assistant-software-engineering-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=side-job-student-assistant-software-engineering-2</link>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Thu, 30 Mar 2023 12:11:45 +0000</pubDate>
				<category><![CDATA[Geen categorie]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=2120</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-image size-full"><img decoding="async" width="840" height="1190" src="https://appsemble.com/wp-content/uploads/2023/03/bijbaan02_2x-1.png" alt="" class="wp-image-2121" srcset="https://appsemble.com/wp-content/uploads/2023/03/bijbaan02_2x-1.png 840w, https://appsemble.com/wp-content/uploads/2023/03/bijbaan02_2x-1-768x1088.png 768w, https://appsemble.com/wp-content/uploads/2023/03/bijbaan02_2x-1-42x60.png 42w" sizes="(max-width: 840px) 100vw, 840px" /></figure><p>The post <a href="https://appsemble.com/en/side-job-student-assistant-software-engineering-2/">Side job / student assistant software engineering</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Vacancy: fullstack webdeveloper</title>
		<link>https://appsemble.com/en/fullstack-developer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fullstack-developer</link>
					<comments>https://appsemble.com/en/fullstack-developer/#respond</comments>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Sun, 31 Jul 2022 12:52:00 +0000</pubDate>
				<category><![CDATA[Geen categorie]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=2016</guid>

					<description><![CDATA[<p>Appsemble is looking for a full-time (&#62;=32h) full stack developer to join the team. Appsemble is an open source low-code app building platform. Apps are defined using YAML. Apps consist of pages that are composed using blocks to provide them with content and interactivity. It’s built using TypeScript, Node.js and React. As a team member &#8230;</p>
<p>The post <a href="https://appsemble.com/en/fullstack-developer/">Vacancy: fullstack webdeveloper</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Appsemble is looking for a full-time (&gt;=32h) full stack developer to join the team. <a href="https://gitlab.com/appsemble/appsemble">Appsemble</a> is an open source low-code app building platform.</p>



<p>Apps are defined using YAML. Apps consist of pages that are composed using blocks to provide them with content and interactivity. It’s built using TypeScript, Node.js and React.</p>



<p>As a team member you will work extending the core Appsemble platform and write new blocks as well as developer documentation for other developers building blocks. You&#8217;ll work with team members who are building apps on behalf of clients, you&#8217;ll help them by adding functionality to the platform to realize the apps envisioned. Our goal is to enhance the platform, so users can build their own apps without our help, and we can focus on improving the platform and user experience for app builders.<br><br><strong>You&#8230;</strong></p>



<ul class="wp-block-list"><li>are communicative</li><li>have autonomy</li><li>are helpful (participation in the community)</li><li>have experience with JavaScript / Node.js / TypeScript / React / PostgreSQL</li></ul>



<p>Not sure if you meet these qualifications? Let&#8217;s talk on how to get you to that level.</p>



<p><strong>Got some of these skills? Even better</strong></p>



<ul class="wp-block-list"><li>Preact</li><li>PWA</li><li>OpenAPI</li><li>DevOps</li><li>Kubernetes</li><li>Helm</li></ul>



<p><strong>What do we offer in return?</strong></p>



<ul class="wp-block-list"><li>Laptop</li><li>25 vacation days per year</li><li>Holiday allowance</li><li>Flexible working hours</li><li>Work remotely or at the office in Eindhoven, The Netherlands.</li><li>And of course, the ability to work on open source.</li></ul>



<p><strong>Are you interested in this position?</strong><br>Are you interested or do you want more information?<br>Do not hesitate to email us at support@appsemble.com or join our Discord server at https://discord.gg/XbSRraC.</p><p>The post <a href="https://appsemble.com/en/fullstack-developer/">Vacancy: fullstack webdeveloper</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://appsemble.com/en/fullstack-developer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Appsemble winter update</title>
		<link>https://appsemble.com/en/appsemble-winter-update-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=appsemble-winter-update-2</link>
					<comments>https://appsemble.com/en/appsemble-winter-update-2/#respond</comments>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Mon, 03 May 2021 10:44:59 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Tech]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=1894</guid>

					<description><![CDATA[<p>Many functionalities have been added since the last summer update.We list the most important updates, but first present the latest (open source) apps. New apps Workspace reservation app There is this app for when we can return to the office. Employees can easily reserve their own workplace so that locations are not overbooked. The app &#8230;</p>
<p>The post <a href="https://appsemble.com/en/appsemble-winter-update-2/">Appsemble winter update</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Many functionalities have been added since the last <a href="https://appsemble.com/en/appsemble-summer-release/">summer</a> update.<br>We list the most important updates, but first present the latest (open source) apps.</p>



<h2 class="wp-block-heading">New apps</h2>



<h4 class="wp-block-heading">Workspace reservation app</h4>



<p>There is this app for when we can return to the office. Employees can easily reserve their own workplace so that locations are not overbooked. The app was developed on behalf of the municipality of Amersfoort and is shared according to the open source principle.</p>



<div class="wp-block-media-text alignwide is-stacked-on-mobile"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="994" height="1842" src="https://appsemble.com/wp-content/uploads/2021/01/reserveringen.png" alt="" class="wp-image-1717 size-full" srcset="https://appsemble.com/wp-content/uploads/2021/01/reserveringen.png 994w, https://appsemble.com/wp-content/uploads/2021/01/reserveringen-768x1423.png 768w, https://appsemble.com/wp-content/uploads/2021/01/reserveringen-829x1536.png 829w, https://appsemble.com/wp-content/uploads/2021/01/reserveringen-32x60.png 32w" sizes="auto, (max-width: 994px) 100vw, 994px" /></figure><div class="wp-block-media-text__content">
<p>The development of this app has resulted in the following reusable building blocks:</p>



<ul class="wp-block-list"><li><strong>Microsoft SAML </strong>integration (Single sign-on).</li><li>Division of users into teams.</li><li>Calculation module taking into account max. occupancy per workspace.</li><li>Link with external BI systems for further analysis. </li></ul>



<figure class="wp-block-image size-large"><a href="https://appsemble.app/en/apps/100"><img loading="lazy" decoding="async" width="392" height="128" src="https://appsemble.com/wp-content/uploads/2021/02/appsemble-store.png" alt="" class="wp-image-1731" srcset="https://appsemble.com/wp-content/uploads/2021/02/appsemble-store.png 392w, https://appsemble.com/wp-content/uploads/2021/02/appsemble-store-184x60.png 184w" sizes="auto, (max-width: 392px) 100vw, 392px" /></a><figcaption>Try out the app yourself.</figcaption></figure>
</div></div>



<h4 class="wp-block-heading">Visitors app</h4>



<p>City hall employees can register their visitors themselves via this handy app. The reception has its own overview in which the registered visitors are clearly listed and can be registered. Naturally, the visitors themselves also receive an (optional) notification for confirmation.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="937" height="634" src="https://appsemble.com/wp-content/uploads/2021/01/bezoekers-e1611243940425.png" alt="" class="wp-image-1719"/></figure>



<div class="wp-block-image"><figure class="alignright size-large is-resized"><a href="https://appsemble.app/en/apps/94"><img loading="lazy" decoding="async" src="https://appsemble.com/wp-content/uploads/2021/02/appsemble-store.png" alt="" class="wp-image-1731" width="233" height="76" srcset="https://appsemble.com/wp-content/uploads/2021/02/appsemble-store.png 392w, https://appsemble.com/wp-content/uploads/2021/02/appsemble-store-184x60.png 184w" sizes="auto, (max-width: 233px) 100vw, 233px" /></a><figcaption>Probeer de App hier zelf uit</figcaption></figure></div>



<ul class="wp-block-list"><li>Users with different roles (screens for employees of the municipality, the secretariat and receptionists)</li><li>Smart filters give the receptionists a quick overview of appointments.</li><li>The details will be confirmed by email.</li><li>No-shows are automatically processed every night.</li></ul>



<p></p>



<h4 class="wp-block-heading">Bread container app</h4>



<div class="wp-block-image"><figure class="alignright size-large is-resized"><a href="https://appsemble.app/en/apps/28"><img loading="lazy" decoding="async" src="https://appsemble.com/wp-content/uploads/2021/02/appsemble-store.png" alt="" class="wp-image-1731" width="233" height="76" srcset="https://appsemble.com/wp-content/uploads/2021/02/appsemble-store.png 392w, https://appsemble.com/wp-content/uploads/2021/02/appsemble-store-184x60.png 184w" sizes="auto, (max-width: 233px) 100vw, 233px" /></a><figcaption>Probeer de App hier zelf uit</figcaption></figure></div>



<p>The Municipality of Amsterdam combats pests in the city with <a rel="noreferrer noopener" href="https://www.amsterdam.nl/afval-hergebruik/broodbak/" target="_blank">bread containers</a>. The app is for managers of the containers and drivers who empty them. The weighing carried out by the collection trucks is entered in the app and the container manager is immediately notified of the amount of gas and compost that the bin will generate in green energy during processing.</p>



<div class="wp-block-media-text alignwide is-stacked-on-mobile"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="440" height="849" src="https://appsemble.com/wp-content/uploads/2021/01/broodapp.png" alt="" class="wp-image-1722 size-full" srcset="https://appsemble.com/wp-content/uploads/2021/01/broodapp.png 440w, https://appsemble.com/wp-content/uploads/2021/01/broodapp-31x60.png 31w" sizes="auto, (max-width: 440px) 100vw, 440px" /></figure><div class="wp-block-media-text__content">
<p>The development of this app has resulted in the following reusable building blocks:</p>



<ul class="wp-block-list"><li>The block map can group markers when they are close to each other.</li><li>Linking with external XML data sources.</li><li>Access rights of app users can be set per role.</li><li>User chooses the preferred method of receiving updates: email or push notification.</li></ul>



<p></p>
</div></div>



<h2 class="wp-block-heading">New app-store</h2>



<figure class="wp-block-image size-large"><a href="https://appsemble.app/nl/apps"><img loading="lazy" decoding="async" width="1359" height="715" src="https://appsemble.com/wp-content/uploads/2021/02/Screenshot_from_2021-02-03_16-26-38.png" alt="" class="wp-image-1747" srcset="https://appsemble.com/wp-content/uploads/2021/02/Screenshot_from_2021-02-03_16-26-38.png 1359w, https://appsemble.com/wp-content/uploads/2021/02/Screenshot_from_2021-02-03_16-26-38-768x404.png 768w, https://appsemble.com/wp-content/uploads/2021/02/Screenshot_from_2021-02-03_16-26-38-114x60.png 114w" sizes="auto, (max-width: 1359px) 100vw, 1359px" /></a></figure>



<p>Apps are now visible in our app store. This app store differs from other app stores on the following characteristics:</p>



<ul class="wp-block-list"><li>An app store can be put together per organization. Employees are shown exactly the apps that are relevant to them.</li><li>The open source apps can be <strong>cloned</strong>. With this, the app recipe is copied (without data) and the app can be further adjusted if desired and used for your organization.</li></ul>



<h2 class="wp-block-heading">New functionality</h2>



<p>In this news update, the emphasis is on apps. We have described all new functions in more detail <a href="https://gitlab.com/appsemble/appsemble/-/blob/master/CHANGELOG.md">hier</a>.</p>



<h4 class="wp-block-heading">Appsemble på dansk</h4>



<p>You read that right, we have become multilingual: Appsemble can now also be used in Danish. Via <a href="https://hosted.weblate.org/projects/appsemble/">weblate</a>, volunteers have already translated Appsemble into French and German. <a href="http://360businesstool.com/">360 Business Tool</a> from Denmark has worked on the Danish translation and will also provide the Danish municipalities with low-code apps. Want to become a partner too? Get in touch and we&#8217;ll help you create apps.</p>



<h4 class="wp-block-heading">Repeating actions</h4>



<p><a href="https://gitlab.com/appsemble/appsemble/-/blob/master/CHANGELOG.md#0157-2020-11-13">Cronjobs</a> is the technical name for the possibility to perform a certain action at a predetermined time. For example, delete personal data from the database every night to comply with the GDPR.</p>



<p></p><p>The post <a href="https://appsemble.com/en/appsemble-winter-update-2/">Appsemble winter update</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://appsemble.com/en/appsemble-winter-update-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Appsemble summer release</title>
		<link>https://appsemble.com/en/appsemble-summer-release/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=appsemble-summer-release</link>
					<comments>https://appsemble.com/en/appsemble-summer-release/#respond</comments>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Mon, 22 Jun 2020 19:52:51 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Tech]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=1625</guid>

					<description><![CDATA[<p>Many, many new features have been added since the last blog post.We&#8217;ll list the most important ones in each category. New or updated blocks Most blocks received updates. Only a couple are listed below: Map block Allow grouping icons that would otherwise be too close together on this zoomlevel. Custom icons. Form block Radio buttons &#8230;</p>
<p>The post <a href="https://appsemble.com/en/appsemble-summer-release/">Appsemble summer release</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Many, many new features have been added since the <a href="https://appsemble.com/en/new-app-leads-to-ton-of-new-appsemble-functionality/">last</a> blog post.<br>We&#8217;ll list the most important ones in each category.</p>



<h2 class="wp-block-heading">New or updated blocks</h2>



<p>Most blocks received updates. Only a couple are listed below:</p>



<h3 class="wp-block-heading">Map block</h3>



<ul class="wp-block-list"><li>Allow grouping icons that would otherwise be too close together on this zoomlevel.</li><li>Custom icons.</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="371" height="660" src="https://appsemble.com/wp-content/uploads/2020/06/brood-app.amsterdam.localhost_9999_kaartGalaxy_S5.png" alt="" class="wp-image-1646" srcset="https://appsemble.com/wp-content/uploads/2020/06/brood-app.amsterdam.localhost_9999_kaartGalaxy_S5.png 371w, https://appsemble.com/wp-content/uploads/2020/06/brood-app.amsterdam.localhost_9999_kaartGalaxy_S5-34x60.png 34w" sizes="auto, (max-width: 371px) 100vw, 371px" /></figure>



<h3 class="wp-block-heading">Form block</h3>



<h4 class="wp-block-heading">Radio buttons</h4>



<p>Forms are one of the most important blocks in most applications. It&#8217;s used to gather user input. Yet radio buttons (where you could select only one option) were missing. They&#8217;re there now!</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="174" height="255" src="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-21-17-39.png" alt="" class="wp-image-1635" srcset="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-21-17-39.png 174w, https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-21-17-39-41x60.png 41w" sizes="auto, (max-width: 174px) 100vw, 174px" /></figure>



<h4 class="wp-block-heading">Data validation rules</h4>



<p>Stacked validation rules can be applied to form input including powerful <a rel="noreferrer noopener" aria-label="regular expressions (opens in a new tab)" href="https://en.wikipedia.org/wiki/Regular_expression" target="_blank">regular expressions</a>. Along with it, custom error messages can be specified.  </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="362" height="113" src="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-26-13-55-20.png" alt="" class="wp-image-1645" srcset="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-26-13-55-20.png 362w, https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-26-13-55-20-192x60.png 192w" sizes="auto, (max-width: 362px) 100vw, 362px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="637" height="144" src="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-26-13-53-44.png" alt="" class="wp-image-1644" srcset="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-26-13-53-44.png 637w, https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-26-13-53-44-265x60.png 265w" sizes="auto, (max-width: 637px) 100vw, 637px" /></figure>



<h4 class="wp-block-heading">Validation using external services</h4>



<p>Validating input like an address against a REST data services is possible using a <em>request action</em>:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="474" height="197" src="https://appsemble.com/wp-content/uploads/2020/07/Screenshot-from-2020-07-08-13-50-29.png" alt="" class="wp-image-1653" srcset="https://appsemble.com/wp-content/uploads/2020/07/Screenshot-from-2020-07-08-13-50-29.png 474w, https://appsemble.com/wp-content/uploads/2020/07/Screenshot-from-2020-07-08-13-50-29-144x60.png 144w" sizes="auto, (max-width: 474px) 100vw, 474px" /></figure>



<h2 class="wp-block-heading">New security features</h2>



<h4 class="wp-block-heading">OAuth2 login</h4>



<p>OAuth 2.0 is the industry-standard protocol for authorization. This feature allows employees of your organisation to login to the app as they&#8217;d normally do. It&#8217;s often referred to as SSO (Single Sign On). To most users it just means they don&#8217;t need to remember yet another password, which is good for security.<br>Connect to any OAuth2 compatible identity provider, like Microsoft Azure Active Directory (AD), Google or even Gitlab. <a rel="noreferrer noopener" aria-label="More info (opens in a new tab)" href="https://appsemble.dev/guide/oauth2" target="_blank">More info</a>.</p>



<h4 class="wp-block-heading">App roles</h4>



<p>In case you want some parts of the app or data to be accessible to some users, but not to others, you can use the <a href="https://appsemble.dev/guide/security#root-app-roles">new role based security</a> approach in the app definition. On several levels you can protect your app, pages, blocks and even resources (the data in your app). The roles can be customized and assigned to users through the studio:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="681" height="181" src="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-10-00-28.png" alt="" class="wp-image-1632" srcset="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-10-00-28.png 681w, https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-10-00-28-226x60.png 226w" sizes="auto, (max-width: 681px) 100vw, 681px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="624" height="598" src="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-10-06-02-2.png" alt="" class="wp-image-1633" srcset="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-10-06-02-2.png 624w, https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-10-06-02-2-63x60.png 63w" sizes="auto, (max-width: 624px) 100vw, 624px" /></figure>



<h2 class="wp-block-heading">New studio features</h2>



<h3 class="wp-block-heading">Block store</h3>



<p>This is a first step towards making our app editor more developer friendly. New app developers are guided in adding and configuring blocks to an app. It&#8217;s now much easier than before to explore the new blocks available to your app:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="840" height="684" src="https://appsemble.com/wp-content/uploads/2020/06/blockstore.png" alt="" class="wp-image-1639" srcset="https://appsemble.com/wp-content/uploads/2020/06/blockstore.png 840w, https://appsemble.com/wp-content/uploads/2020/06/blockstore-768x625.png 768w, https://appsemble.com/wp-content/uploads/2020/06/blockstore-74x60.png 74w" sizes="auto, (max-width: 840px) 100vw, 840px" /></figure>



<p>You&#8217;ll also see the publisher of the block. <code>@appsemble</code> means it&#8217;s a block supported by the Appsemble organisation. We&#8217;re hoping to see many contributions from all over the world. A block also has an icon. Perhaps there&#8217;s an artist in our community who likes drawing icons so the blocks get instantly recognizable.</p>



<p>In case you&#8217;d like to know more about a block, there&#8217;s more documentation available:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="864" height="743" src="https://appsemble.com/wp-content/uploads/2020/06/block-details.png" alt="" class="wp-image-1640" srcset="https://appsemble.com/wp-content/uploads/2020/06/block-details.png 864w, https://appsemble.com/wp-content/uploads/2020/06/block-details-768x660.png 768w, https://appsemble.com/wp-content/uploads/2020/06/block-details-70x60.png 70w" sizes="auto, (max-width: 864px) 100vw, 864px" /></figure>



<p>All parameter you&#8217;re able to set are documented as well:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="854" height="884" src="https://appsemble.com/wp-content/uploads/2020/06/block-api.png" alt="" class="wp-image-1641" srcset="https://appsemble.com/wp-content/uploads/2020/06/block-api.png 854w, https://appsemble.com/wp-content/uploads/2020/06/block-api-768x795.png 768w, https://appsemble.com/wp-content/uploads/2020/06/block-api-58x60.png 58w" sizes="auto, (max-width: 854px) 100vw, 854px" /></figure>



<p></p>



<h3 class="wp-block-heading">CSV export</h3>



<p>Data inside your app could already be exported through the API, but now there&#8217;s also the option to export to CSV. Ideal to further process the data in your favorite spreadsheet application.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="343" height="170" src="https://appsemble.com/wp-content/uploads/2020/06/Screenshot-from-2020-06-24-09-58-36-e1594209585282.png" alt="" class="wp-image-1631"/></figure>



<h3 class="wp-block-heading">GUI app editor</h3>



<p>Until now, writing <em>low-code</em> YAML was the way to build your application using Appsemble. We&#8217;re pioneering easier ways to get the job done. While still rough around the edges, you might like our visuals aid for adding and configuring blocks to your app recipe. It guides you through the available options of the block so you don&#8217;t have to figure out what YAML to write.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="763" height="660" src="https://appsemble.com/wp-content/uploads/2020/07/editor.png" alt="" class="wp-image-1655" srcset="https://appsemble.com/wp-content/uploads/2020/07/editor.png 763w, https://appsemble.com/wp-content/uploads/2020/07/editor-69x60.png 69w" sizes="auto, (max-width: 763px) 100vw, 763px" /></figure>



<h2 class="wp-block-heading">Project and client updates</h2>



<ul class="wp-block-list"><li>The blocks and apps commissioned by the <strong>municipality of Amsterdam</strong> are now <a rel="noreferrer noopener" aria-label="open sourced (opens in a new tab)" href="https://gitlab.com/appsemble/amsterdam" target="_blank">open sourced</a> now we&#8217;ve replaced a proprietary font (Avenir) that was in their brand guide originally. </li><li>We&#8217;re happy to welcome the <strong>municipality of Amersfoort</strong> as new client.<ul><li>New blocks and the <em>bezoekers app</em> that&#8217;ll be built for them in H2 2020 will of course be open source.<br>The OAuth2 login feature to allow integration with their Microsoft Active Directory was a first contribution.</li><li>The way our contract was <a href="https://appsemble.com/faq/#inkoopvoorwaarden">structured</a> may serve as template for other municipalities as well. Saves everyone the legal work.</li></ul></li><li>We&#8217;re just as happy to welcome <strong>TBV Wonen, a housing cooperation</strong>. They&#8217;ve chosen Appsemble to build an app to let their tenants report defects (along with a photo) through a branded app. It&#8217;ll be released towards the end of Q3 2020.</li><li>All recent platform updates can be found on the <a href="https://gitlab.com/appsemble/appsemble/-/releases">releases page</a>.</li></ul>



<h2 class="wp-block-heading">In development</h2>



<p>These features are expected to be landing soon in an upcoming release:</p>



<ul class="wp-block-list"><li><a href="https://gitlab.com/appsemble/appsemble/-/issues/158">Multilingual</a> apps should make it to a release in August 2020. With this feature your users can choose in which language they&#8217;ll see your app as long as you provide the translations for it.</li><li>Email templates should make it to a release in September 2020. It&#8217;s quite handy to send notification emails that can also be localised.</li><li>We&#8217;ve got loads of feedback from developers that tried building blocks and apps. We know there&#8217;s a lot to improve. We&#8217;re balancing time between building client apps with the framework (<em>dogfooding</em> and a way fund further development) and improving the developer workflow. We&#8217;ve planned several developer UX and documentation improvements for the remainder of the year.</li><li>A visually new <a rel="noreferrer noopener" aria-label="app store (opens in a new tab)" href="https://appsemble.app/" target="_blank">app store</a> that promotes best rated apps and allow you to clone and adapt each app easily.</li></ul>



<p></p><p>The post <a href="https://appsemble.com/en/appsemble-summer-release/">Appsemble summer release</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://appsemble.com/en/appsemble-summer-release/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Appsemble development tutorial</title>
		<link>https://appsemble.com/en/appsemble-development-tutorial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=appsemble-development-tutorial</link>
					<comments>https://appsemble.com/en/appsemble-development-tutorial/#respond</comments>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Tue, 19 May 2020 11:50:21 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[blocks]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[local]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=1613</guid>

					<description><![CDATA[<p>One of the Appsemble developers created a video tutorial on how to install Appsemble locally (on Windows) and prepare your environment for development of apps and blocks. Of course, if you just want to build apps using existing blocks, you can just use our SAAS and don&#8217;t need to install anything. We hope this video &#8230;</p>
<p>The post <a href="https://appsemble.com/en/appsemble-development-tutorial/">Appsemble development tutorial</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>One of the Appsemble developers created a video tutorial on how to install Appsemble locally (on Windows) and prepare your environment for development of apps and blocks.</p>



<p>Of course, if you just want to build apps using existing blocks, you can just use our <a href="https://appsemble.app">SAAS</a> and don&#8217;t need to install anything.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Appsemble: Getting Started" width="770" height="433" src="https://www.youtube.com/embed/AzkGAO_hc64?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>



<p>We hope this video helps you avoid pitfalls. In case you&#8217;re still having issues, drop by on <a href="https://discord.gg/XbSRraC">discord</a> and we&#8217;re happy to help.</p><p>The post <a href="https://appsemble.com/en/appsemble-development-tutorial/">Appsemble development tutorial</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://appsemble.com/en/appsemble-development-tutorial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>New app leads to ton of new Appsemble functionality</title>
		<link>https://appsemble.com/en/new-app-leads-to-ton-of-new-appsemble-functionality/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-app-leads-to-ton-of-new-appsemble-functionality</link>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 12:20:34 +0000</pubDate>
				<category><![CDATA[Updates]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=1549</guid>

					<description><![CDATA[<p>3 months of work and a strict deadline &#8211; we&#8217;ve done it! Stichting 10 Second Move presented their app built with Appsemble live on stage during the Nederlandse Dansdagen &#8211; Dutch dance festival. The process of creating this app pushed the ability of the low-code app builder into new territory. As an intentional side effect it &#8230;</p>
<p>The post <a href="https://appsemble.com/en/new-app-leads-to-ton-of-new-appsemble-functionality/">New app leads to ton of new Appsemble functionality</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<h4 class="wp-block-heading"><strong>3 months </strong>of work and a strict deadline &#8211; we&#8217;ve done it!</h4>



<p>Stichting <em>10 Second Move</em> presented their app built with Appsemble live on stage during the Nederlandse Dansdagen &#8211; Dutch dance festival. The process of creating this app pushed the ability of the low-code app builder into new territory. As an intentional side effect it provided many new open sourced blocks and functionalities.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="10 Second Dance release" width="770" height="433" src="https://www.youtube.com/embed/vESidXjesQU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>



<p>The App has several purposes. One is connecting dancers around the world. The other is closer at home: Hogeschool Fontys uses the app to let students record their own dance, as a reaction on the previous 10 seconds of dance from another student.</p>



<h4 class="wp-block-heading">New functionality in Appsemble</h4>



<p></p>



<div class="wp-block-media-text alignwide"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="385" height="677" src="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-46-08-1.png" alt="" class="wp-image-1552" srcset="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-46-08-1.png 385w, https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-46-08-1-34x60.png 34w" sizes="auto, (max-width: 385px) 100vw, 385px" /></figure><div class="wp-block-media-text__content">
<ul class="wp-block-list"><li>Video capture</li><li>Video playback</li><li>Thumbnails generated by custom backend processing video.</li><li>Bottom menu with icons instead of the default side menu.</li></ul>
</div></div>



<div class="wp-block-media-text alignwide has-media-on-the-right"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="332" height="150" src="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-58-51-e1572462168769.png" alt="" class="wp-image-1553"/></figure><div class="wp-block-media-text__content">
<ul class="wp-block-list"><li>Tabbed interface</li><li>Allow customization of themes in detail.</li></ul>
</div></div>



<div class="wp-block-media-text alignwide"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="384" height="679" src="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-48-52.png" alt="" class="wp-image-1551" srcset="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-48-52.png 384w, https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-19-48-52-34x60.png 34w" sizes="auto, (max-width: 384px) 100vw, 384px" /></figure><div class="wp-block-media-text__content">
<ul class="wp-block-list"><li>Improved form styling</li><li>Input field validation (as shown)</li><li>Form labels inputs are now aligned vertically making it more responsive.</li><li>Bottom menu with icons instead of the default side menu.</li><li>Flow capability indicating there&#8217;ll be a next form.</li></ul>
</div></div>



<p>It doesn&#8217;t end here. Also the low-code app editor received additional features:</p>



<div class="wp-block-media-text alignwide"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="361" height="150" src="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-20-56-10.png" alt="" class="wp-image-1556" srcset="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-20-56-10.png 361w, https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-20-56-10-144x60.png 144w" sizes="auto, (max-width: 361px) 100vw, 361px" /></figure><div class="wp-block-media-text__content">
<ul class="wp-block-list"><li>Attach your app to a domain of your choosing. We&#8217;ll take care of the required SSL certificates.</li><li>Improved validation of the app-recipe.</li><li>Support deleting apps.</li><li>Toggle between setting your app private/public.</li></ul>
</div></div>



<p>On behalf of the team, I&#8217;d like to thank Stichting 10 Second Move, Fontys and several other project sponsors to make this happen. I&#8217;m especially happy that a next version of the app is already being planned. Stay tuned for more exiting features.</p>



<p> </p><p>The post <a href="https://appsemble.com/en/new-app-leads-to-ton-of-new-appsemble-functionality/">New app leads to ton of new Appsemble functionality</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Upcoming features and how to contribute.</title>
		<link>https://appsemble.com/en/upcoming-features-and-how-to-contribute/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upcoming-features-and-how-to-contribute</link>
		
		<dc:creator><![CDATA[Kees van den Broek]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 12:18:57 +0000</pubDate>
				<category><![CDATA[Updates]]></category>
		<guid isPermaLink="false">https://appsemble.com/?p=1558</guid>

					<description><![CDATA[<p>Get started using templates Don&#8217;t be afraid of our low code editor. It&#8217;s very easy to get started. Promised. Just register for free at https://appsemble.app, create a new app based upon one of our templates. It even comes with sample data. You don&#8217;t have to stare at a blank screen, just start making edits and &#8230;</p>
<p>The post <a href="https://appsemble.com/en/upcoming-features-and-how-to-contribute/">Upcoming features and how to contribute.</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></description>
										<content:encoded><![CDATA[<p></p>



<h2 class="wp-block-heading">Get started using templates</h2>



<p>Don&#8217;t be afraid of our low code editor. It&#8217;s very easy to get started. Promised.</p>



<div class="wp-block-media-text alignwide has-media-on-the-right"><figure class="wp-block-media-text__media"><img loading="lazy" decoding="async" width="667" height="764" src="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-20-35-30.png" alt="" class="wp-image-1555" srcset="https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-20-35-30.png 667w, https://appsemble.com/wp-content/uploads/2019/10/Screenshot-from-2019-10-30-20-35-30-52x60.png 52w" sizes="auto, (max-width: 667px) 100vw, 667px" /></figure><div class="wp-block-media-text__content">
<ul class="wp-block-list"><li><span style="text-align: initial;">Just register for free at </span><a style="text-align: initial;" href="https://appsemble.app">https://appsemble.app</a><span style="text-align: initial;">, create a new app based upon one of our templates. It even comes with sample data. You don&#8217;t have to stare at a blank screen, just start making edits and take it from there</span>.</li></ul>



<p></p>
</div></div>



<p>&#8230; Ok, let&#8217;s be fair. Not everything is super-easy yet. If you get stuck, please ask us for help and we&#8217;ll be glad to help out (and Linda will improve the UX/UI along with it, so the next person won&#8217;t get stuck)</p>



<h4 class="wp-block-heading">How to join and/or contribute?</h4>



<ul class="wp-block-list"><li>Build an app <strong>yourself, it&#8217;s free&nbsp;</strong>and we&#8217;ll be happy to help you along. We get valuable feedback from you in return.</li><li>The easiest way is to <strong>let us build your app</strong> if you need one. We provide consultancy to build you a great app while your money will be spent on improving the open ecosystem. No vendor lock-in here!</li><li>If you <strong>already have a software partner</strong>, ask if they can build an app for you based on the open source Appsemble low-code platform.<br><br>In both cases, our advise would be to keep your app recipe private if you&#8217;d like to prevent clones of your app, but open source general framework improvements and resulting new building blocks. Everybody benefits.</li></ul>



<p>We&#8217;re planning to internationalize the platform and are looking for native speakers of languages other than <strong>nl</strong> and <strong>en</strong> who&#8217;d like to help on translating strings and documentation. Some technical background will be needed.</p>



<h4 class="wp-block-heading"><strong>What&#8217;s coming up next?</strong></h4>



<p>In November 2019, we expect to release:</p>



<div class="wp-block-image"><figure class="alignright is-resized"><img loading="lazy" decoding="async" src="https://appsemble.com/wp-content/uploads/2019/10/rss.jpg" alt="" class="wp-image-1566" width="133" height="71" srcset="https://appsemble.com/wp-content/uploads/2019/10/rss.jpg 900w, https://appsemble.com/wp-content/uploads/2019/10/rss-768x410.jpg 768w, https://appsemble.com/wp-content/uploads/2019/10/rss-113x60.jpg 113w" sizes="auto, (max-width: 133px) 100vw, 133px" /></figure></div>



<div class="wp-block-image"><figure class="alignleft is-resized"><img loading="lazy" decoding="async" src="https://appsemble.com/wp-content/uploads/2019/10/oauth2.jpeg" alt="" class="wp-image-1565" width="73" height="73" srcset="https://appsemble.com/wp-content/uploads/2019/10/oauth2.jpeg 225w, https://appsemble.com/wp-content/uploads/2019/10/oauth2-60x60.jpeg 60w" sizes="auto, (max-width: 73px) 100vw, 73px" /></figure></div>



<ul class="wp-block-list"><li>Push notifications.</li><li>XML/RSS feed ingest.</li><li>Improved authentication of users within your app.</li></ul>



<p>Here&#8217;s a <a rel="noreferrer noopener" href="https://gitlab.com/appsemble/appsemble/blob/master/CHANGELOG.md" target="_blank">changelog summary</a>&nbsp;of what has been cooking in the code department last month.<br>You can look at <a rel="noreferrer noopener" href="https://gitlab.com/appsemble/appsemble/merge_requests" target="_blank">code that&#8217;s almost ready to be released</a>&nbsp;and you can look at what&#8217;s planned to work on in the <a rel="noreferrer noopener" href="https://gitlab.com/groups/appsemble/-/milestones" target="_blank">next sprint of 2 weeks</a>.</p>



<figure class="wp-block-image is-resized"><img loading="lazy" decoding="async" src="https://appsemble.com/wp-content/uploads/2019/08/Untitled.png" alt="" class="wp-image-1528" width="524" height="196" srcset="https://appsemble.com/wp-content/uploads/2019/08/Untitled.png 550w, https://appsemble.com/wp-content/uploads/2019/08/Untitled-160x60.png 160w" sizes="auto, (max-width: 524px) 100vw, 524px" /></figure>



<p> </p><p>The post <a href="https://appsemble.com/en/upcoming-features-and-how-to-contribute/">Upcoming features and how to contribute.</a> first appeared on <a href="https://appsemble.com">Appsemble</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
