1
0
Fork 0
Commit graph

25 commits

Author SHA1 Message Date
joostdecock
b248d98928 fix(backend): import fixes 2023-08-13 16:15:06 +02:00
joostdecock
30d48f1c07 wip(backend): More data migration code 2023-08-09 20:40:38 +02:00
Joost De Cock
e61122e538 chore(backend): Add UK translations to import sizing table script 2023-08-08 06:54:59 +02:00
joostdecock
0b441eed58 fix(backend): Various fixes for UK langauge support 2023-08-05 19:18:53 +02:00
Joost De Cock
cf6d30eeee feqt(backend): Ported to site prebuild system 2023-07-31 18:16:45 +02:00
joostdecock
1c95f8ed34 chore(backend): Fix linter warnings in backend code 2023-05-19 16:37:32 +02:00
joostdecock
a6f32e155c chore(backend): Code QA in rmdb script 2023-05-19 11:32:30 +02:00
joostdecock
2c16f634a9 chore(backend): Disable mongo export script for now 2023-05-19 11:29:51 +02:00
joostdecock
2951f50ac8 chore(backend): Disable import script for now 2023-05-19 11:28:23 +02:00
joostdecock
6362da4317 chore(backend): Code QA in backend size table script 2023-05-19 11:23:55 +02:00
joostdecock
efadcb512c chore(backend): Code QA in backend username script 2023-05-19 11:23:46 +02:00
joostdecock
0dece4d70e wip(org): Started working on v3 workbench 2023-05-08 19:28:03 +02:00
joostdecock
87b3a265a2 feat(backend): Script to import models 2023-05-07 18:58:11 +02:00
joostdecock
e4f2aab9d0 feat(backend): Added curatedSets data type 2023-05-07 12:00:43 +02:00
joostdecock
078b965733 feat(backend): Reworked signup flow and translation 2023-01-14 17:04:06 +01:00
joostdecock
0cdb7a0ae0 wip(backend): Work on OpenAPI v3 spec and swagger docs 2022-12-18 20:04:52 +01:00
joostdecock
39774f76fa wip(backend): More work on person/user 2022-11-12 20:36:47 +01:00
joostdecock
dc82faee73 wip(backend): Account retrieval and doubles 2022-11-02 13:54:20 +01:00
joostdecock
f6a796959b wip(backend): Added lowercase username field 2022-11-02 12:33:32 +01:00
joostdecock
22f357adbf wip(backend): Split migration script into two steps 2022-11-01 14:32:36 +01:00
joostdecock
98087677be wip(backend): Work on signup flow 2022-10-31 17:54:49 +01:00
joostdecock
d8134314c6 feat(backend): Added new and legacy password handling 2022-10-31 08:36:36 +01:00
joostdecock
34549d5c71 wip(backend): Work on migration scripts for backend db 2022-10-30 19:16:19 +01:00
joostdecock
88d9b2a1e9 wip(backend): Started work on v3 backend 2022-10-29 22:28:40 +02:00
Joost De Cock
e4035b2509 chore: Re-structure workspaces, enforce build order
These are some changes in the way the monorepo is structured,
that are aimed at making it easier to get started.

There are two important changes:

**Multiple workspaces**

We had a yarn workspaces setup at `packages/*`. But our monorepo has
grown to 92 packages which can be overwhelming for people not familiar
with the package names.

To remedy this, I've split it into 4 different workspaces:

- `designs/*`: Holds FreeSewing designs (think patterns)
- `plugins/*`: Holds FreeSewing plugins
- `packages/*`: Holds other packages published on NPM
- `sites/*`: Holds software that is not published as an NPM package,
  such as our various websites and backend API

This should make it easier to find things, and to answer questions like
*where do I find the code for the plugins*.

**Updated reconfigure script to handle build order**

One problem when bootstrapping the repo is inter-dependencies between
packages. For example, building a pattern will only work once
`plugin-bundle` is built. Which will only work once all plugins in the
bundle or built. And that will only work when `core` is built, and so
on.

This can be frustrating for new users as `yarn buildall` will fail.
And it gets overlooked by seasoned devs because they're likely to have
every package built in their repo so this issue doesn't concern them.

To remedy this, we now have a `config/build-order.mjs` file and the
updated `/scripts/reconfigure.mjs` script will enforce the build order
so that things *just work*.
2022-06-16 17:11:31 +02:00