Currently working on a new release (v2)
Things left to finish:
- Public entries
- Admin user management
- Quality of Life updates
Introducing a sleek and user-friendly app with a modern design, perfect for saving all your important information in an organized and visually appealing manner.
With a robust Markdown editor, you can effortlessly jot down notes, create lists, manage tasks and share it with others!
OS | App Version |
---|---|
Linux 64bit | Linux64_Standalone |
Linux-arm 32bit | Linux86-arm |
MacOS 64bit | MacOSx64 |
Windows 64bit | Windowsx64 |
Windows 32bit | Windowsx86 |
If you have problem running the app try installing ASP.NET core runtime 7 for your OS
- Download MyThingsSaver.zip
- Unpack it
- Locate App.exe in the root directory
- Run App.exe
- Type http://localhost/ in your browser
- Download MyThingsSaver.zip
- Unpack it
- Locate App.dll or App file in the root directory
- run command:
dotnet App.dll
/ or runApp
file - Type http://localhost/ in your browser
- Download MyThingsSaver.zip
- Unpack it
- Locate
App
File in the root directory - Run
App
file - Type http://localhost/ in your browser
- Type http://localhost/ in your browser (working only on your local machine)
- Type http://YourLocalIP/ in your browser (working only in your local network)
- Type http://YourPublicIP/ in your browser (App needs to be port forwarded - How to?)
- npm
- .NET 7 SDK
- git clone repository
- go to MyThingsSaver/src/App
- Move
appsettings.json
fromexamples
folder tosrc/App
and configure it to your needs - run command:
dotnet run
- Remember to have self signed developer certificate for local HTTPS
- Copy contents of
.env
files from examples folder (removeexample
part of file name) tobackend/App/client
- Copy example appsettings.json to
backend/App
or use new generated one from debug folder once you run app once - Ports are configured in
.env
,.env.development
,App.csproj
,appsettings.json
appsettings.json
file should be inside backend/App
and .env
file should be inside backend/App/client
- Set API ports inside
appsettings.json
(HttpPort
,HttpsPort
) - Set correct Https port to
ASPNETCORE_HTTPS_PORT
variable in.env
- Set client app port to
PORT
variable in.env
- Set correct client port to
<SpaProxyServerUrl>
tag inApp.csproj
HttpsPort
must matchASPNETCORE_HTTPS_PORT
variable
<SpaProxyServerUrl>
must matchPORT
variable
Handled by Network
object in appsettings.json
-
Nginx & HTTPS
Example nginx configuration file is insideexamples
folder.- Install nginx
- Replace nginx configuration file with
examples/nginx.conf
- Create
.cert
folder in the nginx root folder - Get SSL certificates from GreenLock or other provider if you don't have them
- Move your certificate files to
.cert
folder - Open and edit
appsettings.json
- Change
Type
inNetwork
tonginx
- If you're using example nginx config you can set
HttpsRedirection
tofalse
because it's handled by nginx - If you're using example nginx config you can set
UseHSTS
tofalse
because HSTS is handled by nginx - Set ports to different ones than 80 and 443 because nginx will be using them
- Set
Issuer
andAudience
inJWT
to your domain - Run nginx
- Run App
If you want to access your application from internet (outside your local network) you need to port forward ports your nginx is configured on, you can visit this guide for that - How do I port forward?. You need to forward ports 80 and 443 if you're using example
nginx.conf
file
Type
determines how app behaviour. If you're using it as standalone version set it tostandalone
, if you're using nginx set it tonginx
to successfully configure right headers forwarding behaviourHttpsRedirection
set true if you want redirect your users to app on https portsUseHttps
Configures app to run also atHttpsPort
UseHSTS
HTTP Strict Transport Security Protocol which enforce using HTTPS and prevents sending any communication over HTTP
- Using settings like
HttpsRedirection
,UseHSTS
andUseHttps
might break your app if you don't have SSL certificate and correct proxy server configured (like nginx)- If you want to run your app locally with https you can set
UseHttps
to true but you have to have trusted localhost SSL certificate- Server will be served on your localhost IP by default, that means if your PC has ip for example 192.168.0.100 you can access app by typing http://192.168.0.100/ on your network, or http://localhost/ on your local machine. To check your IP type:
ipconfig
on windows,ifconfig
on linux or
By default logger is set to "Warning" level
You can change it to the following:
Log Level | Severity | Description |
---|---|---|
Trace | 0 | Logs messages only for tracing purposes for the developers. |
Debug | 1 | Logs messages for short-term debugging purposes. |
Information | 2 | Logs messages for the flow of the application. |
Warning | 3 | Logs messages for abnormal or unexpected events in the application flow. |
Error | 4 | Logs error messages. |
Critical | 5 | Logs failures messages that require immediate attention. |
AllowedHosts is used for host filtering to bind your app to specific hostnames
By default it's *
which means all hosts are allowed
Connection strings to your database, by default SQLite with connection contained in SQLiteConnectionString
is used as your databse
You can change target database in Database
setting
Default ConnectionString schemes:
Name | Scheme |
---|---|
DatabaseConnectionString |
server=;uid=;pwd=;database=mythingssaver |
SQLiteConnectionString |
Data Source= |
Determines which database should be used
Options:
Database | Setting name | ConnectionString used |
---|---|---|
MySQL | mysql | DatabaseConnectionString |
SQLite | sqlite | SQLiteConnectionString |
Browser security prevents a web page from making requests to a different domain than the one that served the web page.
This restriction is called the same-origin policy. The same-origin policy prevents a malicious site from reading sensitive data from another site
Key
generated key for creating authentication tokensIssuer
Put your domain here. Identifies principal that issued the JWT (Json Web Token)Audience
Put your domain here. Claim that identifies the recipients that the JWT is intended for
You can find your save file inside
save
directory in root folder. It will be calledsave.sqlite
Move
appsettings.example.json
from examples to/src/App
.
It will be automatically moved to your debug folder every build
You can message me on discord
HueByte#0001
or send email to [email protected]
Yes. I'm working on it in my free time :)
Ambitions are big, there's not a lot of time but for future features I want to add more types of "things" you can save, for example: photos, files, links and others. I also want to add plugin support so users can personalize their things saver