https://github.com/udelblue/systemize
Systemize document flows
https://github.com/udelblue/systemize
document-management-system dotnet-core workflow-management-system
Last synced: 3 months ago
JSON representation
Systemize document flows
- Host: GitHub
- URL: https://github.com/udelblue/systemize
- Owner: udelblue
- Created: 2025-03-24T00:05:23.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-04-12T15:31:53.000Z (3 months ago)
- Last Synced: 2025-04-13T05:42:46.965Z (3 months ago)
- Topics: document-management-system, dotnet-core, workflow-management-system
- Language: C#
- Homepage:
- Size: 1.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Systemize
Systemize is a document workflow system. This allows users to create templated workflows to provide a linear approval system for digitized documents. Some of the features are a history and timeline of all events. Metrics on time spent at each stage of the approval process. Basic authenication, and more.




## Run
To run the project please follow the following commands below.### Run the following command to create a new migration and update the database
- delete the files in migrations folder
- to run update connection string in appsettings.jsonrun the following command in the terminal
```bashdotnet ef migrations add InitialCreate
dotnet ef database update```
or
```bash
Add-Migration InitialCreate
Update-Database
```