This commit is contained in:
@@ -16,6 +16,7 @@ todo: BIG PICTURE
|
|||||||
|
|
||||||
Outlook integration extension??
|
Outlook integration extension??
|
||||||
wtf to do with that, are there any other extensions actively being sold that I need to worry about?
|
wtf to do with that, are there any other extensions actively being sold that I need to worry about?
|
||||||
|
this should probably be more like office365 integration at this point, need stats on desktop outlook but it must be vanishingly small aty this point?
|
||||||
|
|
||||||
Pricing policy and plan
|
Pricing policy and plan
|
||||||
New website at the ready
|
New website at the ready
|
||||||
@@ -38,7 +39,7 @@ todo: QBOI deprecation
|
|||||||
If he wishes to switch we will give him a free desktop QBI initial subscription for one year and then regular renewal price afterwards
|
If he wishes to switch we will give him a free desktop QBI initial subscription for one year and then regular renewal price afterwards
|
||||||
|
|
||||||
|
|
||||||
todo: outlook integration, do we have those still in use and paid for? Do I rewrite that in raven?
|
|
||||||
|
|
||||||
todo: licensing and pricing
|
todo: licensing and pricing
|
||||||
v7 users will use v7 "legacy" licenses
|
v7 users will use v7 "legacy" licenses
|
||||||
@@ -130,6 +131,7 @@ Add where items are selected to all prior docs just as it's been done at the top
|
|||||||
|
|
||||||
|
|
||||||
start in on QBI
|
start in on QBI
|
||||||
|
Fastest easiest thing is to make it on the v7 laptop as a regular .net app but try to compile on .net core on main dev laptop
|
||||||
qb developer network change names and phone number from Joyce to me, it has 2fa set to go to Joyce's phone
|
qb developer network change names and phone number from Joyce to me, it has 2fa set to go to Joyce's phone
|
||||||
minimum viable product, just something that works
|
minimum viable product, just something that works
|
||||||
How to make it work in desktop / winlan / linuxlan / online all together??
|
How to make it work in desktop / winlan / linuxlan / online all together??
|
||||||
@@ -155,6 +157,7 @@ start in on QBI
|
|||||||
todo: will need qb for testing, maybe in a vm to be on the safe side?
|
todo: will need qb for testing, maybe in a vm to be on the safe side?
|
||||||
todo: (only if winforms is the route to go and .net core supports qb api) figure out how can design forms in vscode for a winform interface, possible build them on v7 laptop, commit and open in vscode just the form design part
|
todo: (only if winforms is the route to go and .net core supports qb api) figure out how can design forms in vscode for a winform interface, possible build them on v7 laptop, commit and open in vscode just the form design part
|
||||||
does .net core support winforms? Has the form design code format changed from .net?
|
does .net core support winforms? Has the form design code format changed from .net?
|
||||||
|
|
||||||
|
|
||||||
QBOI? Fuck QBOI, all my homies hate qboi
|
QBOI? Fuck QBOI, all my homies hate qboi
|
||||||
How many actual? one PITI
|
How many actual? one PITI
|
||||||
@@ -212,7 +215,8 @@ critical path items:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#1 Task oriented simple view / dashboard type idea
|
MARKETING FUTURE
|
||||||
|
Task oriented simple view / dashboard type idea
|
||||||
something to get people going without having to flail around
|
something to get people going without having to flail around
|
||||||
identify common tasks and find ways to accomplish it as simply as possible
|
identify common tasks and find ways to accomplish it as simply as possible
|
||||||
maybe dashboard has overlay floating menu for quick actions?
|
maybe dashboard has overlay floating menu for quick actions?
|
||||||
@@ -274,6 +278,9 @@ critical path items:
|
|||||||
see other one click solutions to see if anything comparable to us then follow that to see how they market etc on their sites
|
see other one click solutions to see if anything comparable to us then follow that to see how they market etc on their sites
|
||||||
https://community.centminmod.com/threads/digitalocean-marketplace-for-1-click-applications.16835/
|
https://community.centminmod.com/threads/digitalocean-marketplace-for-1-click-applications.16835/
|
||||||
|
|
||||||
|
todo: payment processor down the road look at Braintree as they accept intnl payments, have an api and are used by one man dev shops
|
||||||
|
https://blog.healthchecks.io/2022/02/healthchecks-io-hosting-setup-2022-edition/
|
||||||
|
|
||||||
todo: new AyaNova.com website built using asp.net core and razor web pages
|
todo: new AyaNova.com website built using asp.net core and razor web pages
|
||||||
https://docs.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/razor-pages-start?view=aspnetcore-6.0&tabs=visual-studio-code
|
https://docs.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/razor-pages-start?view=aspnetcore-6.0&tabs=visual-studio-code
|
||||||
I would like to have some code and intelligence behind it / be able to code it so can do cool shit with it like a front end to manage trial servers
|
I would like to have some code and intelligence behind it / be able to code it so can do cool shit with it like a front end to manage trial servers
|
||||||
|
|||||||
@@ -390,8 +390,13 @@ server {
|
|||||||
proxy_connect_timeout 3600;
|
proxy_connect_timeout 3600;
|
||||||
proxy_send_timeout 3600;
|
proxy_send_timeout 3600;
|
||||||
proxy_read_timeout 3600;
|
proxy_read_timeout 3600;
|
||||||
send_timeout 3600;
|
send_timeout 3600;
|
||||||
client_max_body_size 10G;
|
# Note: the client_max_body_size setting controls the maximum upload size for attachments in AyaNova
|
||||||
|
# it is a good security precaution to set this value only as high as absolutely needed by your staff for
|
||||||
|
# file attachment uploads
|
||||||
|
# AyaNova can handle up to 10GB maximum so the highest setting allowed here would be:
|
||||||
|
# client_max_body_size 10GB;
|
||||||
|
client_max_body_size 25M;
|
||||||
}
|
}
|
||||||
|
|
||||||
listen 443 ssl;
|
listen 443 ssl;
|
||||||
@@ -457,8 +462,13 @@ server {
|
|||||||
proxy_connect_timeout 3600;
|
proxy_connect_timeout 3600;
|
||||||
proxy_send_timeout 3600;
|
proxy_send_timeout 3600;
|
||||||
proxy_read_timeout 3600;
|
proxy_read_timeout 3600;
|
||||||
send_timeout 3600;
|
send_timeout 3600;
|
||||||
client_max_body_size 10G;
|
# Note: the client_max_body_size setting controls the maximum upload size for attachments in AyaNova
|
||||||
|
# it is a good security precaution to set this value only as high as absolutely needed by your staff for
|
||||||
|
# file attachment uploads
|
||||||
|
# AyaNova can handle up to 10GB maximum so the highest setting allowed here would be:
|
||||||
|
# client_max_body_size 10GB;
|
||||||
|
client_max_body_size 25M;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -554,8 +564,13 @@ server {
|
|||||||
proxy_connect_timeout 3600;
|
proxy_connect_timeout 3600;
|
||||||
proxy_send_timeout 3600;
|
proxy_send_timeout 3600;
|
||||||
proxy_read_timeout 3600;
|
proxy_read_timeout 3600;
|
||||||
send_timeout 3600;
|
send_timeout 3600;
|
||||||
client_max_body_size 10G;
|
# Note: the client_max_body_size setting controls the maximum upload size for attachments in AyaNova
|
||||||
|
# it is a good security precaution to set this value only as high as absolutely needed by your staff for
|
||||||
|
# file attachment uploads
|
||||||
|
# AyaNova can handle up to 10GB maximum so the highest setting allowed here would be:
|
||||||
|
# client_max_body_size 10GB;
|
||||||
|
client_max_body_size 25M;
|
||||||
}
|
}
|
||||||
|
|
||||||
listen 443 ssl; # managed by Certbot
|
listen 443 ssl; # managed by Certbot
|
||||||
|
|||||||
Reference in New Issue
Block a user