Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/secondflight/databaseproject
Project for a database class
https://github.com/secondflight/databaseproject
Last synced: 1 day ago
JSON representation
Project for a database class
- Host: GitHub
- URL: https://github.com/secondflight/databaseproject
- Owner: SecondFlight
- License: mit
- Created: 2018-04-19T00:29:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T14:09:11.000Z (almost 7 years ago)
- Last Synced: 2025-01-28T03:44:32.163Z (9 days ago)
- Language: C#
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DatabaseProject
Project for a database classDue to the private nature of the data in this project, the data files have not been included.
[Here's the tutorial](https://docs.microsoft.com/en-us/ef/core/get-started/netcore/new-db-sqlite) for setting up the database.
## Setup instructions
5 things need to be copied into the project folder for this to work. They are ignored using the .gitignore.
- removedUsers.json
- userdata.json
- usernames.json
- peoplefinder-images/
- ejoker-images/You might need to install some nuget packages. Here's something to try for Mac if it doesn't work out of the box:
1. open a terminal
2. cd to project directory
3. type in the following commands:
- `dotnet add package Microsoft.EntityFrameworkCore.Sqlite`
- `dotnet add package Microsoft.EntityFrameworkCore.Design`
- `dotnet add package Newtonsoft.Json` (Alternatively, try installing this with the Nuget package manager in Visual Studio - that's what you do on windows)
- `dotnet restore`If this doesn't work then let me know.