Skip to content

Commit

Permalink
docs(setup): put all setup scripts into a folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Xenepix committed Dec 21, 2023
1 parent 14b8a53 commit 5b2f910
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 154 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ all: setup-testing-environment makemigrations migrate runserver

setup:
ifeq ($(OS),Darwin) # Mac OS X
./setup-osx.sh
./setup/setup-osx.sh
else ifeq ($(OS),Linux)
./setup-unix.sh
./setup/setup-unix.sh
else
./setup-windows.sh
./setup/setup-windows.sh
endif

setup-testing-environment:
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,16 @@
<br/>

## django-napse
....

Django napse is a portfolio management module using trading bots.

This directory can be used as a django module, which you can install as follows:

```bash
pip install django-napse
```

Or you can use it as a local backend for the [Napse desktop application](https://github.com/napse-invest/Napse), by cloning the repo (possibly after forking it).

## Useful commands
Unless otherwise specified, all commands are to be run at the root folder of the project.
Expand Down
10 changes: 8 additions & 2 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,19 @@ You can commit the code from your fork through a pull request on the official re
=== "Linux"

```bash
source setup-unix.sh
source setup/setup-unix.sh
```

=== "MacOS"

```bash
source setup/setup-osx.sh
```

=== "Windows"

```powershell
.\setup-windows.ps1
.\setup\setup-windows.ps1
```

#### Setup initial exchange accounts
Expand Down
File renamed without changes.
83 changes: 0 additions & 83 deletions docs/theme/assets/stylesheets/docstring.css

This file was deleted.

63 changes: 0 additions & 63 deletions docs/theme/partials/header.html

This file was deleted.

4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ nav:
- "sources/reference/spaces.md"
- "sources/reference/transactions.md"
- "sources/reference/wallets.md"
- API: "api.md"
- API: "sources/api.md"
- Development:
- Contributing: "contributing.md"
- Security: "SECURITY.md"
- Coverage: coverage.md
- Coverage: coverage.md
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5b2f910

Please sign in to comment.