A webapp/website for searching and categorising your locally stored documents
Go to file
Lynne Megido d890307d6b
more CSS tweaks, removed 'view' button
2020-09-17 23:47:13 +10:00
.vscode basic UI layout and style 2020-09-16 11:43:55 +10:00
Controllers implemented basic API for getting documents 2020-09-16 12:55:32 +10:00
Data actually use the jsonconversion 2020-09-16 09:58:10 +10:00
Migrations working edit page, added notes to db, lots of minor style changes 2020-09-17 23:37:11 +10:00
Models working edit page, added notes to db, lots of minor style changes 2020-09-17 23:37:11 +10:00
Pages more CSS tweaks, removed 'view' button 2020-09-17 23:47:13 +10:00
ViewModels working edit page, added notes to db, lots of minor style changes 2020-09-17 23:37:11 +10:00
Views/Shared/DisplayTemplates basic UI layout and style 2020-09-16 11:43:55 +10:00
wwwroot more CSS tweaks, removed 'view' button 2020-09-17 23:47:13 +10:00
.gitignore added placeholder help and upload buttons, functional view button 2020-09-16 12:39:45 +10:00
LICENSE initial commit 2020-09-15 22:31:52 +10:00
Program.cs initial commit 2020-09-15 22:31:52 +10:00
README.md added readme 2020-09-17 23:15:29 +10:00
Startup.cs implemented basic API for getting documents 2020-09-16 12:55:32 +10:00
appsettings.Development.json initial commit 2020-09-15 22:31:52 +10:00
appsettings.json initial commit 2020-09-15 22:31:52 +10:00
snootalogue.csproj basic UI layout and style 2020-09-16 11:43:55 +10:00

Snootalogue

A webapp for categorising, sharing and searching documents. Not at all ready for production in its current state.

Dependencies

You need the ASP.NET Core Runtime to run Snootalogue - the .NET Core Runtime on its own is not enough. The .NET 3.1 download page provides links to the installers you'll need. Note that no binaries are currently provided, so you'll need to build Snootalogue yourself (see the Developing section below).

Developing

Visual Studio Code provides great C# integration. Ensure you've installed the .NET Core SDK (not just the runtime) and the Visual Studio Code C# Extension, and you'll be good to go.

Testing

Snootalogue runs on port 5000, so make sure you don't have anything currently using that port.

git clone https://git.bune.city/lynnesbian/Snootalogue
cd Snootalogue
if ! which dotnet-ef; then dotnet tool install --global dotnet-ef; fi
dotnet ef database update
dotnet run