blob: a379f53d0021c9ffc9e822f118d5a581adc662d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# CommitFest
This application manages commitfests for the PostgreSQL community.
A commitfest is a collection of patches and reviews for a project and is part of the PostgreSQL development process.
## The Application
This is a Django 3.2 application backed by PostgreSQL and running on Python 3.x.
## Getting Started
### Ubuntu instructions
First, prepare your development environment by installing pip, virtualenv, and postgresql-server-dev-X.Y.
```bash
sudo apt install python-pip postgresql-server-dev-14
```
Next, configure your local environment with virtualenv and install local dependencies.
```bash
python3 -m venv env
source env/bin/activate
pip install -r dev_requirements.txt
```
Create a database for the application:
```bash
createdb pgcommitfest
```
Create a local settings file (feel free to edit it):
```bash
cp pgcommitfest/local_settings_example.py pgcommitfest/local_settings.py
```
Now you can now create the required tables. Note that a password might need to
be provided.
```bash
./manage.py migrate
```
You'll need either a database dump of the actual server's data or else to create a superuser:
```bash
./manage.py createsuperuser
```
Finally, you're ready to start the application:
```bash
./run_dev.py
```
Then open http://localhost:8007/admin to log in. Once redirected to the Django
admin interface, go back to the main interface. You're now logged in.
## Contributing
Before committing make sure to install the git pre-commit hook to adhere to the
codestyle.
```bash
ln -s ../../tools/githook/pre-commit .git/hooks/
```
|