Skip to content

Commit

Permalink
docs: Added a README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
isala404 committed Jan 2, 2022
1 parent a01b222 commit a0aa3ee
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: docker build -t $IMAGE_NAME:$GITHUB_JOB .
- run: docker push $IMAGE_NAME:$GITHUB_JOB
- run: docker build -t $IMAGE_NAME:commit-${GITHUB_SHA:0:8} .
- run: docker tag $IMAGE_NAME $IMAGE_NAME:latest
- run: docker push $IMAGE_NAME --all-tags
release:
runs-on: ubuntu-latest
needs: [ build ]
Expand Down
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Workflow

Workflow is a project management software that will help you to manage project of small to medium scale. This provides simple and easy to use Kanban board track the progress of the project. In the users can create multiple organizations and multiple projects in them and users can work across many projects and companies.

This was mainly developed to show case my skills of creating enterprise grade applications using **.NET 6** as the backend **Blazor** to render the frontend UIs.

## Demo - https://workflow.isala.me/
Username - suffect \
Password - Abcd@1234
> Note: Database will be resetted after each session
## Run locally

### Development
> Note: .NET 6.0 SDK needs to be installed
```bash
git clone https://github.com/MrSupiri/WorkFlow.git
cd WorkFlow/WorkFlow/Server
dotnet run "WorkFlow.Server.csproj"
```

### Preview
```bash
docker run --rm -p 5021:443 -p 7021:80 ghcr.io/mrsupiri/workflow:latest
```

### Screenshots
#### Home Page
![Home Page](images/home-page.png)
#### Kanban Board
![Kanban Board](images/project-view.png)
#### Report Forecasting
![Report Forecasting](images/forecasting.png)
#### Edit Ticket
![Edit Ticket](images/ticket-view.png)
#### User Settings
![User Settings](images/user-profile.png)
#### Company Settings
![Company Settings](images/comapny-settings.png)
Binary file added images/comapny-settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/forecasting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/home-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/project-view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/ticket-view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/user-profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a0aa3ee

Please sign in to comment.