A webapp/website for searching and categorising your locally stored documents
Go to file
Lynne Megido 107fe6078c
API for deleting documents
2020-09-20 14:12:41 +10:00
.vscode basic UI layout and style 2020-09-16 11:43:55 +10:00
Controllers API for deleting documents 2020-09-20 14:12:41 +10:00
Data got rid of a bunch of unecessary usings 2020-09-17 23:48:18 +10:00
Migrations use random IDs instead of just sequential numbers 2020-09-20 13:43:08 +10:00
Models use random IDs instead of just sequential numbers 2020-09-20 13:43:08 +10:00
Pages API for deleting documents 2020-09-20 14:12:41 +10:00
Properties/PublishProfiles let's see if i can publish the builds to s3 2020-09-19 19:01:04 +10:00
ViewModels use random IDs instead of just sequential numbers 2020-09-20 13:43:08 +10:00
Views/Shared/DisplayTemplates basic UI layout and style 2020-09-16 11:43:55 +10:00
wwwroot fixed css for the one other web browser that exists 2020-09-20 13:50:27 +10:00
.drone.yml fuck it 2020-09-19 19:27:17 +10:00
.gitignore let's see if i can publish the builds to s3 2020-09-19 19:01:04 +10:00
LICENSE initial commit 2020-09-15 22:31:52 +10:00
Program.cs got rid of a bunch of unecessary usings 2020-09-17 23:48:18 +10:00
README.md use random IDs instead of just sequential numbers 2020-09-20 13:43:08 +10:00
Startup.cs implemented basic API for getting documents 2020-09-16 12:55:32 +10:00
appsettings.Development.json got rid of a bunch of unecessary usings 2020-09-17 23:48:18 +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

Build Status

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
mkdir wwwroot/Content
if ! which dotnet-ef; then dotnet tool install --global dotnet-ef; fi
dotnet ef database update
dotnet run