1
0
Fork 0
Commit graph

34 commits

Author SHA1 Message Date
joostdecock
2299cc6ade feat(backend): Added flows endpoint for language suggestion 2023-07-09 18:49:37 +02:00
joostdecock
c49a47a0de chore: Fixing linter warnings 2023-05-19 16:31:28 +02:00
joostdecock
e4f2aab9d0 feat(backend): Added curatedSets data type 2023-05-07 12:00:43 +02:00
joostdecock
19a81a0aed feat(backend): implemented centralized RBAC checks 2023-05-06 12:52:26 +02:00
joostdecock
9e23e7bd0e chore(backend): Linter 2023-02-26 16:31:04 +01:00
joostdecock
e691253d51 feat(backend): No more people, sets instead 2023-02-26 16:04:12 +01:00
joostdecock
4c3d3a5019 feat(backend): Implement email change flow 2023-02-26 13:18:14 +01:00
joostdecock
79434846b6 feat(org): Further work on account pages 2023-02-19 20:49:15 +01:00
joostdecock
6d648b9008 fix(backend): Fix language-specific website url in emails 2023-01-14 17:12:05 +01:00
joostdecock
8e93b3ef07 chore: Linter fixes 2023-01-14 17:08:33 +01:00
joostdecock
078b965733 feat(backend): Reworked signup flow and translation 2023-01-14 17:04:06 +01:00
joostdecock
ab844024f6 feat(backend): Bunch of changes for Docker 2022-12-18 14:41:58 +01:00
Joost De Cock
a5ee0a0854 wip(backend): Added MFA support 2022-11-17 20:41:21 +01:00
Joost De Cock
b9bb96d837 wip(backend): More work on backend/tests 2022-11-16 15:08:05 +01:00
joostdecock
e37548fcf7 wip(backend): More access control guarding 2022-11-14 17:50:34 +01:00
joostdecock
39774f76fa wip(backend): More work on person/user 2022-11-12 20:36:47 +01:00
joostdecock
bccf4a35ee wip(backend): more progress on account endpoints and tests 2022-11-11 18:02:28 +01:00
joostdecock
3fc08d8bdb wip(backend): Added HTML email 2022-11-05 22:02:51 +01:00
joostdecock
0313bb4572 wip(backend): Work on routes, auth, and email templates 2022-11-05 18:55:59 +01:00
joostdecock
b45a1c61b4 wip(backend): Refactoring 2022-11-04 20:51:45 +01:00
joostdecock
7aa8f7682a wip(backend): Work on images 2022-11-02 17:12:04 +01:00
joostdecock
553ab91d26 wip(backend): Login flow 2022-11-02 12:47:13 +01:00
joostdecock
0eaccf7b18 wip(backend): Work on new backend and tests 2022-11-01 18:00:25 +01:00
joostdecock
98087677be wip(backend): Work on signup flow 2022-10-31 17:54:49 +01:00
joostdecock
6837f1c8df fix(backend): Stringify return value when updating hash 2022-10-31 08:39:41 +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
f6809e92e4 chore(backend): Cleaned up comments 2022-10-29 22:37:37 +02:00
joostdecock
b42f8bffb2 wip(backend): Clarified ehash method comment 2022-10-29 22:28:40 +02:00
joostdecock
132f77f83b wip(backend): Keep environment out of crypto 2022-10-29 22:28:40 +02:00
joostdecock
88d9b2a1e9 wip(backend): Started work on v3 backend 2022-10-29 22:28:40 +02:00
Joost De Cock
a416b8b860 chore: More linting 2022-09-15 13:49:55 +02:00
Joost De Cock
d6019deb02 chore: Fixing linter warnings 2022-07-12 21:23:14 +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