A webapp/website for searching and categorising your locally stored documents
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Lynne Megido 9e47e64dbb
continuous-integration/drone/push Build is passing Details
implemented delete function with javascript, with a nice message box and everything
3 years ago
.vscode implemented delete function with javascript, with a nice message box and everything 3 years ago
Controllers API for deleting documents 3 years ago
Data got rid of a bunch of unecessary usings 3 years ago
Migrations use random IDs instead of just sequential numbers 3 years ago
Models use random IDs instead of just sequential numbers 3 years ago
Pages implemented delete function with javascript, with a nice message box and everything 3 years ago
Properties/PublishProfiles let's see if i can publish the builds to s3 3 years ago
ViewModels use random IDs instead of just sequential numbers 3 years ago
Views/Shared/DisplayTemplates basic UI layout and style 3 years ago
wwwroot implemented delete function with javascript, with a nice message box and everything 3 years ago
.drone.yml fuck it 3 years ago
.gitignore let's see if i can publish the builds to s3 3 years ago
LICENSE initial commit 3 years ago
Program.cs got rid of a bunch of unecessary usings 3 years ago
README.md use random IDs instead of just sequential numbers 3 years ago
Startup.cs implemented basic API for getting documents 3 years ago
appsettings.Development.json got rid of a bunch of unecessary usings 3 years ago
appsettings.json initial commit 3 years ago
snootalogue.csproj basic UI layout and style 3 years ago

README.md

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