|
1 | 1 | # {{cookiecutter.project_name}}
|
2 | 2 |
|
3 |
| -## Backend Requirements |
| 3 | +## Documentation for development |
4 | 4 |
|
5 |
| -* [Docker](https://www.docker.com/). |
6 |
| -* [Docker Compose](https://docs.docker.com/compose/install/). |
7 |
| -* [Poetry](https://python-poetry.org/) for Python package and environment management. |
| 5 | +- [Getting started](https://github.com/whythawk/full-stack-fastapi-postgresql/blob/master/docs/getting-started.md) |
| 6 | +- [Development and installation](https://github.com/whythawk/full-stack-fastapi-postgresql/blob/master/docs/development-guide.md) |
| 7 | +- [Deployment for production](https://github.com/whythawk/full-stack-fastapi-postgresql/blob/master/docs/deployment-guide.md) |
| 8 | +- [Authentication and magic tokens](https://github.com/whythawk/full-stack-fastapi-postgresql/blob/master/docs/authentication-guide.md) |
8 | 9 |
|
9 |
| -## Frontend Requirements |
10 |
| - |
11 |
| -* Node.js (with `yarn`). |
12 |
| - |
13 |
| -## Backend local development |
14 |
| - |
15 |
| -* Start the stack with Docker Compose: |
16 |
| - |
17 |
| -```bash |
18 |
| -docker-compose up -d |
19 |
| -``` |
20 |
| - |
21 |
| -* Now you can open your browser and interact with these URLs: |
| 10 | +* Local development URLs: |
22 | 11 |
|
23 | 12 | Frontend, built with Docker, with routes handled based on the path: http://localhost
|
24 | 13 |
|
@@ -56,21 +45,26 @@ If your Docker is not running in `localhost` (the URLs above wouldn't work) chec
|
56 | 45 |
|
57 | 46 | ### General workflow
|
58 | 47 |
|
59 |
| -By default, the dependencies are managed with [Poetry](https://python-poetry.org/), go there and install it. |
| 48 | +By default, the dependencies are managed with [Hatch](https://hatch.pypa.io/latest/), go there and install it. |
60 | 49 |
|
61 | 50 | From `./backend/app/` you can install all the dependencies with:
|
62 | 51 |
|
63 | 52 | ```console
|
64 |
| -$ poetry install |
| 53 | +$ hatch env prune |
| 54 | +$ hatch env create production |
65 | 55 | ```
|
66 | 56 |
|
67 |
| -Then you can start a shell session with the new environment with: |
| 57 | +Because Hatch doesn't have a version lock file (like Poetry), it is helpful to `prune` when you rebuild to avoid any sort of dependency hell. Then you can start a shell session with the new environment with: |
68 | 58 |
|
69 | 59 | ```console
|
70 |
| -$ poetry shell |
| 60 | +$ hatch shell |
71 | 61 | ```
|
72 | 62 |
|
73 |
| -Next, open your editor at `./backend/app/` (instead of the project root: `./`), so that you see an `./app/` directory with your code inside. That way, your editor will be able to find all the imports, etc. Make sure your editor uses the environment you just created with Poetry. |
| 63 | +Next, open your editor at `./backend/app/` (instead of the project root: `./`), so that you see an `./app/` directory with your code inside. That way, your editor will be able to find all the imports, etc. Make sure your editor uses the environment you just created with Hatch. For Visual Studio Code, from the shell, launch an appropriate development environment with: |
| 64 | + |
| 65 | +```console |
| 66 | +$ code . |
| 67 | +``` |
74 | 68 |
|
75 | 69 | Modify or add SQLAlchemy models in `./backend/app/app/models/`, Pydantic schemas in `./backend/app/app/schemas/`, API endpoints in `./backend/app/app/api/`, CRUD (Create, Read, Update, Delete) utils in `./backend/app/app/crud/`. The easiest might be to copy the ones for Items (models, endpoints, and CRUD utils) and update them to your needs.
|
76 | 70 |
|
@@ -114,6 +108,8 @@ that means that you are in a `bash` session inside your container, as a `root` u
|
114 | 108 |
|
115 | 109 | ### Backend tests
|
116 | 110 |
|
| 111 | +> NOTE: Tests have not been updated on the current version, so these are likely to fail. |
| 112 | +
|
117 | 113 | To test the backend run:
|
118 | 114 |
|
119 | 115 | ```console
|
|
0 commit comments