https://github.com/d7omdev/stockapi
Stocks API built with ASP.NET Entity Framework
https://github.com/d7omdev/stockapi
Last synced: 8 months ago
JSON representation
Stocks API built with ASP.NET Entity Framework
- Host: GitHub
- URL: https://github.com/d7omdev/stockapi
- Owner: d7omdev
- Created: 2024-07-28T01:01:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-09T18:36:56.000Z (over 1 year ago)
- Last Synced: 2025-03-23T21:46:53.133Z (11 months ago)
- Language: C#
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StockAPI
This project is a simple API for managing and retrieving stock data. It's built using .NET Core and it connects to a SQL Server database.
_This README file is currently a placeholder and is subject to future updates._
## Configuration
The configuration for the project is located in the `appsettings.json` file. Here's a brief overview of the settings:
- `ConnectionStrings`: This section contains the connection string for the database. The `DefaultConnection` string includes the data source (IP and port), the initial catalog (database name), user ID, password, and other connection parameters.
- `Logging`: This section controls the logging level for the application. The `Default` level is set to `Information`, and the `Microsoft.AspNetCore` level is set to `Warning`.
- `AllowedHosts`: This setting controls the hosts that are allowed to connect to the application. It's currently set to `*`, which means any host can connect.
## Usage
To use the API, you'll need to send HTTP requests to the appropriate endpoints. The exact endpoints and their usage will depend on the specific functionality of the API.
## Development
To work on the project, you'll need a .NET Core development environment and access to a SQL Server database. You can then clone the repository, update the `appsettings.json` file with your database connection details, and start the application.
Please note that this is a basic overview. For more detailed information, please refer to the project's documentation or contact the project maintainers.