API for the Bazaar Realm Skyrim mod
Go to file
2020-07-18 18:10:45 -04:00
src Allow no ORDER BY clause by default in list method 2020-07-18 18:10:45 -04:00
.gitignore Gitignore Session.vim 2020-07-18 18:02:43 -04:00
Cargo.lock Modularize, Model trait, list_owners 2020-07-18 17:46:33 -04:00
Cargo.toml Modularize, Model trait, list_owners 2020-07-18 17:46:33 -04:00
devserver.sh Initial commit. WIP shops endpoint 2020-07-13 01:55:36 -04:00
README.md Initial commit. WIP shops endpoint 2020-07-13 01:55:36 -04:00

Development Setup

  1. Install and run postgres.
  2. Create postgres user and database (and add uuid extension while you're there ): createuser shopkeeper createdb shopkeeper sudo -u postgres -i psql postgres=# ALTER DATABASE shopkeeper OWNER TO shopkeeper; \password shopkeeper postgres=# CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
  3. Save password somewhere safe and then update the password in refinery.toml and add a .env file to the project directory with the contents: DATABASE_URL=postgresql://shopkeeper@@localhost/shopkeeper
  4. Run cargo run -- -m which will compile the app in debug mode and run the database migrations.
  5. Run ./devserver.sh to run the dev server (by default it listens at 0.0.0.0:3030).

Todo

  • Make self-contained docker container that can run the app without any setup.