Skip to content

Commit ffd0f6f

Browse files
committed
Updated generated README
1 parent 75d5c14 commit ffd0f6f

File tree

1 file changed

+18
-22
lines changed

1 file changed

+18
-22
lines changed

{{cookiecutter.project_slug}}/README.md

+18-22
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
11
# {{cookiecutter.project_name}}
22

3-
## Backend Requirements
3+
## Documentation for development
44

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)
89

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:
2211

2312
Frontend, built with Docker, with routes handled based on the path: http://localhost
2413

@@ -56,21 +45,26 @@ If your Docker is not running in `localhost` (the URLs above wouldn't work) chec
5645

5746
### General workflow
5847

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.
6049

6150
From `./backend/app/` you can install all the dependencies with:
6251

6352
```console
64-
$ poetry install
53+
$ hatch env prune
54+
$ hatch env create production
6555
```
6656

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:
6858

6959
```console
70-
$ poetry shell
60+
$ hatch shell
7161
```
7262

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+
```
7468

7569
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.
7670

@@ -114,6 +108,8 @@ that means that you are in a `bash` session inside your container, as a `root` u
114108

115109
### Backend tests
116110

111+
> NOTE: Tests have not been updated on the current version, so these are likely to fail.
112+
117113
To test the backend run:
118114

119115
```console

0 commit comments

Comments
 (0)