{"id":17947629,"url":"https://github.com/shadowxpa/mylist","last_synced_at":"2026-04-10T03:57:21.971Z","repository":{"id":258683886,"uuid":"857435970","full_name":"ShadowXPA/MyList","owner":"ShadowXPA","description":"Create and edit your own lists (to-do lists, movie lists, book lists, music lists, etc.)","archived":false,"fork":false,"pushed_at":"2025-09-05T01:55:26.000Z","size":931,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-05T03:21:22.910Z","etag":null,"topics":["apache-lucene","csharp","docker","dotnet-core","ef-core","javascript","kotlin","nuxt3","spring-boot","tailwindcss","typescript","vue"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ShadowXPA.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-14T16:48:17.000Z","updated_at":"2025-09-05T01:41:29.000Z","dependencies_parsed_at":"2025-09-07T22:37:51.438Z","dependency_job_id":null,"html_url":"https://github.com/ShadowXPA/MyList","commit_stats":null,"previous_names":["shadowxpa/mylist"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ShadowXPA/MyList","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShadowXPA%2FMyList","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShadowXPA%2FMyList/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShadowXPA%2FMyList/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShadowXPA%2FMyList/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShadowXPA","download_url":"https://codeload.github.com/ShadowXPA/MyList/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShadowXPA%2FMyList/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274107701,"owners_count":25223451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-lucene","csharp","docker","dotnet-core","ef-core","javascript","kotlin","nuxt3","spring-boot","tailwindcss","typescript","vue"],"created_at":"2024-10-29T08:06:05.306Z","updated_at":"2025-12-30T19:04:44.863Z","avatar_url":"https://github.com/ShadowXPA.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MyList\n\nMyList allows you to create and edit your own lists (to-do lists, movie lists, book lists, music lists, etc.)  \n\n\u003cimg src=\"screenshots/MyList.gif\" /\u003e\n\n## Installation\n\n### Prerequisites\n\n#### Docker setup:\n\n- [Docker](https://www.docker.com/)\n\n#### Manual setup:\n\n- [.NET 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)\n- EF Core CLI tools (`dotnet tool install --global dotnet-ef`)\n- [Node.js 20+](https://nodejs.org/en)\n- [Java 17+](https://jdk.java.net/)\n- [Maven](https://maven.apache.org/)\n- [Optional] [Nginx](https://nginx.org/en/)\n\n### Run (Docker)\n\nRunning with docker is as simple as running one command.  \n\n1. [Optional] Edit the configurations to your liking (nginx, Dockerfiles, etc.)\n2. Run `docker compose up -d --build`\n\n### Run (Manual)\n\nIf you don't have docker or wish to run `MyList` manually, follow the steps below.  \nYou should configure Nginx to proxy the requests if you want to use it on another device (i.e.: other than `localhost`, e.g.: your phone).  \n\n#### Web application\n\nWorking directory: `mylist.client`\n\n1. Install dependencies with `npm install --production`\n2. Set environment variable `API_BASE_URL=http://localhost:5000/mylist-api/**`\n3. Build project with `npm run build`\n4. Run with `node .output/server/index.mjs`\n\nYou should now be able to view the page at `localhost:3000`.  \n\n#### API\n\nWorking directory: `MyList.Server`\n\n1. Edit the `appsettings.json` file\n    - Change the `SearchEngineUri` to `http://localhost:8080` (or wherever your [Search Engine](#search-engine) is running)\n    - Change the connection string to where your database is located (it's shared with the [Search Engine](#search-engine))\n2. Build project with `dotnet publish -c Release -o publish`\n3. Copy the fresh database file `mylist.db`* (or make your own with `dotnet ef database update`) to the `publish` folder\n4. Enter the `publish` directory with `cd publish`\n5. Run with `dotnet MyList.Server.dll`\n\nYou should now be able to access the API at `localhost:5000`.  \n\n\\* This file is located in the repository's base folder `data`.  \n\n#### Search Engine\n\nWorking directory: `mylist.search-engine`\n\n1. Edit the `application.properties` file\n    - Change the `spring.datasource.url` to where your database is located (it's shared with the [API](#api))\n2. Build the project with `mvn clean package -DskipTests`\n3. Enter the `target` directory with `cd target`\n4. Run with `java -jar mylist-search-engine-[VERSION].jar`\n\nYou should now be able to access the Search Engine API at `localhost:8080`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadowxpa%2Fmylist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshadowxpa%2Fmylist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadowxpa%2Fmylist/lists"}