Skip to content

Commit 32b4cd1

Browse files
committed
update README.md
1 parent 3a32666 commit 32b4cd1

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,32 @@ Break down complex tasks into smaller steps or checklists.
3333
- Comments and Collaboration
3434
Add comments or notes to tasks for team communication.
3535
- Attachments
36-
Upload files or documents related to specific tasks.
36+
Upload files or documents related to specific tasks.
37+
38+
### Installation and Running
39+
40+
Use the `Makefile` to simplify the installation and startup process:
41+
42+
```bash
43+
git clone https://github.com/gordienkoas/python-project-52
44+
cd python-project-52
45+
46+
## Configuration
47+
Before running the application, make sure your environment variables are set up correctly. Check the .env file and ensure that it contains valid values for the following variables:
48+
SECRET_KEY: A secret key for your application.
49+
DATABASE_URL: The connection string for your PostgreSQL database, formatted as postgresql://username:password@localhost:5432/database_name.
50+
51+
# Install project dependencies
52+
make build
53+
54+
# Run the production server
55+
make start-server
56+
```
57+
58+
### Testing
59+
60+
To run tests, use the following command:
61+
62+
```bash
63+
make lint # Code linting
64+
```

0 commit comments

Comments
 (0)