Revert some merge stuff

This commit is contained in:
Ojakoo
2022-12-21 18:44:43 +02:00
parent a2615ae27d
commit 36bd74c6cc
+9 -9
View File
@@ -32,10 +32,10 @@ First install [python](https://wiki.python.org/moin/BeginnersGuide/Download). Th
python3 -m pip install poetry
```
The easiest integration with VSCode is to have poetry install virtual environment in project folder, configured with
The easiest integration with VSCode is to have poetry install virtual environment in project folder, configured with CMD
```bash
poetry config virtualenvs.in-project true
python3 -m poetry config virtualenvs.in-project true
```
### Node
@@ -71,12 +71,6 @@ Install dependencies
poetry install
```
### npm scripts
We use Node.js for few development tasks, like linting. Easiest way to install Node is [nvm](https://github.com/nvm-sh/nvm).
TODO: List scripts
### Initializing data
Run the following `manage.py` commands to initialize a new database. Do not run these in production without thinking!
@@ -91,11 +85,17 @@ python manage.py createdummydata # creates dummy members to the member regist
### Running
```bash
python manage.py runserver 0.0.0.0:8000
python manage.py runserver
```
Visit [https://localhost:8000](https://localhost:8000) in your browser!
Using address `0.0.0.0` will bind to all IP addresses. Using `localhost` will only bind to your machine.
```bash
python manage.py runserver 0.0.0.0:8000
```
### Development workflow
When you start working on a feature, create a feature branch for your changes. These feature branches should be prefixed with `feature`.