Crates.io | samling |
lib.rs | samling |
version | 0.11.2 |
source | src |
created_at | 2023-01-04 14:53:02.2567 |
updated_at | 2024-10-31 14:14:25.492843 |
description | App for managing apparel collections |
homepage | https://github.com/hyperkliv/samling |
repository | https://github.com/hyperkliv/samling |
max_upload_size | |
id | 750876 |
size | 3,294,944 |
TODO: Write
This config will be picked up automatically
echo "DB_USER=$(whoami)
DB_NAME=samling
SECRET=abc123
LOG_LEVEL=info
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
CLOUDFLARE_ACCOUNT_ID=abc
CLOUDFLARE_TOKEN=123
SAMLING_PRETTY_RESPONSES=true" > .env
createdb samling
cargo run migrate
Export the user ID as an environment variable, we'll use it later. USER_ID should be 1
as in this example, if the database is clean. We'll also store SUPERUSER_ID for CLI access.
cargo run users create --name 'My Name' --email my@email.com --password MyPassword
export USER_ID=1
echo SUPERUSER_ID=$USER_ID >> .env
cargo run organizations create 'Company Name'
export ORGANIZATION_ID=1
NOTE: ORGANIZATION_ID
might be something different than 1
.
cargo run users associate-roles --all $USER_ID $ORGANIZATION_ID
cargo run serve
NOTE: The stored API token will have to be updated every 7 days for the api
command to work.
echo SAMLING_TOKEN=$(cargo run generate-user-token $USER_ID) >> .env
Pro tip! You can use cargo-watch to have the server restart every time the code changes.
cargo watch -- cargo run serve
This is easy! Just do:
cd ui
npm install
npm start
Currently the only way to create categories, prices, styles etc is via the API.
For example, to create a category called T-Shirts:
echo '{"name": {"en": "T-shirts"}}' | samling api -d - PUT 1/categories/external_id:BC-TShirts
A style:
echo '{"number": "A12345", "name": {"en": "Cool t-shirt"}}' | samling api -d - PUT 1/styles/external_id:BC-A12345
A color, associated with the above style:
echo '{"number": "HBlue", "name": {"en": "Hazy Blue"}, "style": {"external_id": "BC-A12345"}}' | samling api -d - PUT 1/colors/external_id:BC-A12345-HBlue
A size, associated with the above color:
echo '{"number": "XS", "name": {"en": "Extra small"}, "position": 1, "color": {"external_id": "BC-A12345-HBlue"}}' | samling api -d - PUT 1/sizes/external_id:BC-A12345-HBlue-XS
Notice how we're doing PUT
requests here, with an External ID specified in the URL. This would be the typical way of syncing data from your ERP system.