-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
26 additions
and
1 deletion.
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,3 +1,27 @@ | ||
![GitHub](https://img.shields.io/github/license/front-matter/invenio-rdm-starter?logo=MIT) | ||
|
||
# InvenioRDM Starter | ||
# InvenioRDM Starter | ||
|
||
## Initial setup | ||
|
||
```bash | ||
# log into the invenio-rdm-starter container | ||
docker exec -it invenio-rdm-starter-web-1 bash | ||
|
||
# create the database and run migrations | ||
invenio db create | ||
invenio alembic upgrade | ||
|
||
# (optional) load demo data | ||
invenio rdm-records demo | ||
invenio rdm-records fixtures | ||
|
||
# create a user using (your) email address, you will be prompted for a password | ||
invenio users create [email protected] --active --confirm | ||
|
||
# add the user to the admin role | ||
invenio roles add [email protected] admin | ||
``` | ||
|
||
You can now access the instance at https://localhost and login with the user you created. | ||
You may want to add a username and other details via the web interface. |
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