{"id":17203027,"url":"https://github.com/shivansh-yadav13/sqlite-ui","last_synced_at":"2025-06-22T05:05:32.140Z","repository":{"id":44433487,"uuid":"492773281","full_name":"Shivansh-yadav13/SQLite-UI","owner":"Shivansh-yadav13","description":"Web 🌐 based Admin Interface for SQLite 🗂️ Database.","archived":false,"fork":false,"pushed_at":"2024-02-28T13:00:11.000Z","size":542,"stargazers_count":7,"open_issues_count":10,"forks_count":11,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-22T05:05:26.171Z","etag":null,"topics":["css","docker","fiber-framework","golang","hacktoberfest","hacktoberfest2020","html","sqlite","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"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/Shivansh-yadav13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2022-05-16T09:45:56.000Z","updated_at":"2023-08-08T11:12:13.000Z","dependencies_parsed_at":"2024-06-20T01:27:14.846Z","dependency_job_id":"f0832fca-c6fa-4b60-a6d6-8d1b2a4191f5","html_url":"https://github.com/Shivansh-yadav13/SQLite-UI","commit_stats":null,"previous_names":["shivansh-yadav13/sqlite-web"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Shivansh-yadav13/SQLite-UI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shivansh-yadav13%2FSQLite-UI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shivansh-yadav13%2FSQLite-UI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shivansh-yadav13%2FSQLite-UI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shivansh-yadav13%2FSQLite-UI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Shivansh-yadav13","download_url":"https://codeload.github.com/Shivansh-yadav13/SQLite-UI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shivansh-yadav13%2FSQLite-UI/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261238897,"owners_count":23128879,"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","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":["css","docker","fiber-framework","golang","hacktoberfest","hacktoberfest2020","html","sqlite","sqlite3"],"created_at":"2024-10-15T02:16:47.812Z","updated_at":"2025-06-22T05:05:27.088Z","avatar_url":"https://github.com/Shivansh-yadav13.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"![SQLite-UI](https://socialify.git.ci/shivansh-yadav13/sqlite-ui/image?description=1\u0026font=Raleway\u0026forks=1\u0026issues=1\u0026logo=https%3A%2F%2Fdwglogo.com%2Fwp-content%2Fuploads%2F2018%2F03%2FSQLite_Vector_logo-1024x705.png\u0026pattern=Plus\u0026pulls=1\u0026stargazers=1\u0026theme=Light)\n\n# 🌐 SQLite UI\n**SQLite UI** is a web user interface for SQLite database built with Golang.\nIt is built in Golang using the **Fiber** package.\n**Fiber** is an [Express](https://github.com/expressjs/express) inspired **web framework**\nYou can read more about it **[here](https://github.com/gofiber/fiber)**.\nProject is right now at it's very intial stage and under developement. Our plan is to make this a **Good Open Source** project, where people can easily start contributing, fix bugs and add more features 🙂.\n\n## **🔧 Usage**\n\n**Step 1:**\n\nPull Docker Image.\n```bash\ndocker pull ghcr.io/shivansh-yadav13/sqlite-ui:latest\n```\n**Step 2:**\n\nStart Docker container using:\n```\ndocker run -p 3000:3000 -v { location of db file }:/app -e SQLITE_NAME=/app/{ db file name } shivansh-yadav13/sqlite-ui:latest\n```\n**Optional:**\nYou can also use the `--name` and `-d` for the name of the container and for running in detached mode.\n\n## **💻 Set up Project Locally**\n\n**1.)** Fork the repository by click the `Fork` button at the top right of the page.\n\n![Screenshot from 2022-09-22 12-07-47](https://user-images.githubusercontent.com/87603425/191675682-07be1e87-060e-4dfa-92d2-f21cb03b0de6.png)\n\n**2.)** Navigate to a directory, open the terminal and paste the following command and replace `your-github-username` with your GitHub username:\n```bash\ngit clone https://github.com/your-github-username/SQLite-UI.git\n```\n\n**3.)** Build the TailwindCSS bundle, see https://tailwindcss.com/docs/installation for instruction to install the cli.\n\n```bash\n./tailwindcss -i ./static/css/app.css -o ./static/css/build.min.css --minify\n```\n\n**4.)** Now we are ready to start the server, run the following:\n\n```bash\n$ go run main.go\n```\n\nThis will create an empty `data.db` in the current directory. Alternatively, you can also pass in an existing database file as follow:\n\n```bash\n$ SQLITE_NAME=\u003cpath-to-db-file\u003e go run main.go\n```\n\n**5.)** Now you can visit `localhost:3000` and you will be able to see:\n\n![Screenshot from 2022-09-22 12-21-21](https://user-images.githubusercontent.com/87603425/191677999-c3a95f63-8f4b-4b53-8a04-f50fc4323d9d.png)\n\n## **👥 Contributors**\n\n[![Contributors](https://contrib.rocks/image?repo=shivansh-yadav13/sqlite-ui)](https://github.com/shivansh-yadav13/sqlite-ui/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivansh-yadav13%2Fsqlite-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshivansh-yadav13%2Fsqlite-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivansh-yadav13%2Fsqlite-ui/lists"}