1
0
Fork 0
Commit graph

73 commits

Author SHA1 Message Date
joostdecock
f8e1fed09a wip(backend): Fixed async issues with tests 2022-11-10 20:09:30 +01:00
joostdecock
73ee7cceb3 wip(backend): Don't require password at signup 2022-11-08 22:41:30 +01:00
joostdecock
19050ce3b7 wip(backend): Better handling of data 2022-11-08 21:04:32 +01:00
joostdecock
819656815c wip(backend): moved more logic to user model 2022-11-07 20:42:23 +01:00
joostdecock
487095eecb wip(backend): Removed old tests 2022-11-07 20:42:23 +01:00
joostdecock
080385d2bc wip(backend): More tests 2022-11-07 20:42:23 +01:00
joostdecock
ca064a2988 wip(backend): Restructured tests 2022-11-07 20:42:23 +01:00
joostdecock
bd7c3e8b6e wip(backend): concluded apikeys routes and docs 2022-11-06 20:16:01 +01:00
joostdecock
d563bb2d17 wip(backend): more work on routes and docs 2022-11-06 17:39:49 +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
dc82faee73 wip(backend): Account retrieval and doubles 2022-11-02 13:54:20 +01:00
joostdecock
553ab91d26 wip(backend): Login flow 2022-11-02 12:47:13 +01:00
joostdecock
f6a796959b wip(backend): Added lowercase username field 2022-11-02 12:33:32 +01:00
joostdecock
efe9e6c24d wip(backend): Singup workflow and tests 2022-11-01 21:36:15 +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
34549d5c71 wip(backend): Work on migration scripts for backend db 2022-10-30 19:16:19 +01:00
joostdecock
1f312c6548 wip(backend): Added prettier 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
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