Boardroom & voting software by Copyl

Product management app today? Can we install Copyl Integration Platform on site? No, CIP is an Integration Platform as a Service (ipaas) so there is no software to install. Is there a free version of the integration platform? Yes, we have a forever-free version. For advanced features and heavy transactions there is a fee. Can we hire people from Copyl to help us? Yes. We can help you write integrations, inspire your developers and help you with strategic decisions. Contact support@copyl.com to discuss how this could be realized.

Copyl is built in Sweden. Buying a whole ERP-system is so 2000. Today, all kinds of businesses are trying out new digital tools and implement them if they give a value. Many software-as-a-service (SaaS) are implemented by people outside the it-department. Things in common; easy to onboard, they are cheap and have good ux. During the covid-outbreak we totally redesigned Copyl. We spent a year building common building blocks that we can put different labels on, in different apps. Eg Task Management that you can connect as simple todo lists on Contracts in the Contract Management app or use in your Customer Support or Project Planning. Same tech – different labels. Read more details at contract management. Get reminded before a contract reaches a deadline. We will send you an email before any important deadline on your contracts. Your colleagues will get the email if they are conntected to the contract.

All Contracts in one place! See current and past contracts from the overview page. Group by supplier, customer or status. Discuss and follow up on tasks: All contracts have their own forum were you and the counterparts can discuss the contract. The Task Management system in Copyl is also automatically connected to each contract. Integrated with Search and other pages: The contracts appears on the related contacts, search, projects and other pages were the contract is connected.

One common way of describing the microservice’s methods is to use an OpenAPI/Swagger that will create an HTML-page with all methods and data models described. Swagger documentation will be created automatically if you use e.g. Swashbuckle in your .net project. Our free microservice template uses Swashbuckle to describe the microservice api. How to secure your microservices? There are multiple levels of security that you can implement on your microservices. First you should make sure that you have some kind of Web Application Firewall. That could be managed by your cloud provider (Azure, AWS, Google, Alibaba etc) or by a third-part like Cloudflare. This service will make sure that the requests that are coming in to your microservice is of good intentions. Discover more details at https://www.copyl.com/.

No – one database server for all microservices is not correct! If you are used to monolith application it can be tempting to create one (1) database server to manage all the data in the solution. That is not the correct way of implementing microservice architecture. Each microservice should host it’s own data in a server that is bundled together with the services for the microservice. Store data where it belongs: If much of the data belongs in multiple microservices, the design is probably wrong.