Skip to content

Commit

Permalink
Merge pull request #196 from djangonaut-space/develop
Browse files Browse the repository at this point in the history
Deploy to production
  • Loading branch information
tim-schilling authored Jan 12, 2024
2 parents af56c44 + ecea99b commit 335b72d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,22 +123,23 @@ This is an example of how to list things you need to use the software and how to
```sh
venv\Scripts\activate
```
3. install requirements:
```sh
pip install -r requirements/requirements-dev.txt
python manage.py tailwind install
```
4. Create a posgresql database **if you want to use quick and dirty SQLite db, set your `ENVIRONMENT` variable to `dev` (path not actively supported)**
3. Create a posgresql database
```sh
psql -u posgres
```
```sh
postgres=# CREATE DATABASE local_djangonaut_space;
postgres=# CREATE DATABASE "djangonaut-space";
CREATE DATABASE
```
```sh
postgres=# exit
```
4. install requirements:
```sh
pip install -r requirements/requirements-dev.txt
python manage.py tailwind install
```

5. Copy `.env.template` file, rename to `.env` and use variables for your local postgres database.
Copy in Linux:
```sh
Expand Down

0 comments on commit 335b72d

Please sign in to comment.