-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
178 changed files
with
3,939 additions
and
711 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
POSTGRES_HOST = localhost | ||
POSTGRES_PORT = 5432 | ||
POSTGRES_PORT = 5555 | ||
POSTGRES_DB = geoblacklight_test | ||
POSTGRES_USER = postgres | ||
POSTGRES_PASSWORD = postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
format: progress | ||
ignore: | ||
- 'db/seeds.rb' | ||
- 'db/migrate/**' | ||
- 'db/migrate/**' | ||
- 'app/models/document/bbox_validator.rb' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,12 +28,19 @@ You need a PostgreSQL database to use this project. | |
|
||
### Install Template | ||
|
||
Use Ruby v3.3 and Rails v7.0.8.1 to bootstrap a new GeoBlacklight + GBL Admin application using the template script: | ||
#### 1. Create your geoblacklight_admin_development PostgreSQL database | ||
|
||
```bash | ||
rails _7.0.8.1_ new gbl_admin -m https://raw.githubusercontent.com/geobtaa/geoblacklight_admin/develop/template.rb | ||
psql postgres | ||
CREATE DATABASE geoblacklight_admin_development; | ||
``` | ||
|
||
#### 2. Bootstrap a new GeoBlacklight + GBL Admin application using the template script: | ||
|
||
```bash | ||
rails _7.2.2_ new gbl_admin -m https://raw.githubusercontent.com/geobtaa/geoblacklight_admin/develop/template.rb | ||
cd gbl_admin | ||
bundle exec rake gbl_admin:server | ||
bundle exec rake geoblacklight:server | ||
``` | ||
|
||
You have now generated the .internal_test_app and populated the Elements / FormElements tables for OMG Aardvark support. | ||
|
@@ -44,7 +51,7 @@ You have now generated the .internal_test_app and populated the Elements / FormE | |
2. Click on the "Sign in" link | ||
3. Enter email: [email protected] and password: 123456 | ||
4. Click on the "GBL Admin" link | ||
5. Import some CSV (test/fixtures/files/btaa_sample_records.csv) | ||
5. Import some CSV data (test/fixtures/files/btaa_sample_records.csv) | ||
|
||
----- | ||
|
||
|
@@ -58,10 +65,12 @@ The gem is available as open source under the terms of the [Apache 2.0 License]( | |
## TODOs / Roadmap | ||
* ~~Send GBLADMIN JavaScript pack to NPM like Blacklight~~ | ||
* ~~Improve test coverage~~ | ||
* Fix CI test runner | ||
* Debug Rails 7.2 support | ||
* Separate dct_references_s support into a separate model | ||
* Import/Export dct_references_s outside of the main document model | ||
* Migrate our GBL api controllers to just RSolr-based models | ||
* ~~Fix CI test runner~~ | ||
* ~~Debug Rails 7.2 support (remove devise_invitable, see [#915](https://github.com/scambra/devise_invitable/issues/915))~~ | ||
* ~~Separate dct_references_s support into a separate model~~ | ||
* ~~Import/Export dct_references_s outside of the main document model~~ | ||
* Migrate our GBL API controllers to just RSolr-based models | ||
* DRY up Gem dependencies and Engine routing | ||
* Gazetteer: Add GeoNames support | ||
* Gazetteer: Add Who's On First support | ||
* Remove any remaining GEOMG references |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
app/assets/stylesheets/geoblacklight_admin/modules/_tables.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
th.header{ | ||
position: sticky; | ||
top: 55px; | ||
top: 0.25rem; | ||
} |
Oops, something went wrong.