Built with the tools and technologies:
This is learning project which goal is to learn to create webapps with .NET Core MVC, as well as learning how to use corresponding technologies, such as HTML, CSS, Javascript, PostgreSQL, Redis, Entity Framework, LINQ, SignalR, REST API, Docker, NGINX.
- CRUD operations with users and issues
- Replacing :shortcodes: of emojis to corresponding symbols in issues (with use of third-party API)
- Real-time comments in issues
└── IssueTracker/
├── IssueTracker
├── IssueTracker.DAL
├── IssueTracker.Domain
├── IssueTracker.Service
├── IssueTracker.sln
├── IssueTracker.sln.DotSettings
├── IssueTracker.sln.DotSettings.user
├── docker-compose.yml
├── global.json
└── nginx.conf
For deployment:
For local install:
.NET:
version 7.0
Redis
PostgreSQL
NGINX
Build the project from source:
- Clone the IssueTracker repository:
❯ git clone https://github.com/Leplik500/IssueTracker
- Navigate to the project directory:
❯ cd IssueTracker
- Install the required dependencies:
- Start the PostgreSQL service.
- Create a database and set up the user credentials as specified in ConnectionStrings in
appsettings.json
.
- Start the Redis server with the default configuration.
- Use
nginx.conf
file as configuration or change it as you need. - Start the NGINX service.
Install dotnet packages and build project with commands:
❯ dotnet restore
❯ dotnet build
To run the project, execute the following command:
❯ dotnet run
To deploy this project run
❯ docker-compose up --build
Contributions are welcome! Here are several ways you can contribute:
- Report Issues: Submit bugs found or log feature requests for the
IssueTracker
project. - Submit Pull Requests: Review open PRs, and submit your own PRs.
- Join the Discussions: Share your insights, provide feedback, or ask questions.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/Leplik500/IssueTracker
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the Mozilla Public License 2.0 License. For more details, refer to the LICENSE file.