https://github.com/dense-analysis/codelibrary
A site/service for sharing public domain code
https://github.com/dense-analysis/codelibrary
Last synced: 13 days ago
JSON representation
A site/service for sharing public domain code
- Host: GitHub
- URL: https://github.com/dense-analysis/codelibrary
- Owner: dense-analysis
- License: agpl-3.0
- Created: 2023-08-08T21:53:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-24T22:21:09.000Z (almost 3 years ago)
- Last Synced: 2026-02-14T05:23:46.584Z (5 months ago)
- Language: Go
- Size: 158 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# codelibrary
## Development
Ensure Docker is installed, and start the project with `docker compose up`.
You can connect to the Postgres database through the `db` service:
```
docker compose exec db psql codelibrary postgres
```
The database schema will be created automatically on first run. You can update
the schema if needed by running the SQL file again.
```
docker compose exec db psql codelibrary postgres \
-q -f /docker-entrypoint-initdb.d/codelibrary.sql
```