https://github.com/peterbrain/accountx-backend
AccountX-Backend
https://github.com/peterbrain/accountx-backend
django python3
Last synced: about 2 months ago
JSON representation
AccountX-Backend
- Host: GitHub
- URL: https://github.com/peterbrain/accountx-backend
- Owner: PeterBrain
- Created: 2019-12-20T09:48:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T22:54:06.000Z (about 4 years ago)
- Last Synced: 2025-03-04T22:26:45.815Z (over 1 year ago)
- Topics: django, python3
- Language: Python
- Size: 75.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AccountX-Backend
## Setup Guide
### Virtual environment
Create a virtual environment and activate it.
Supported and tested python versions are 3.8.0 and 3.7.3.
If this app is used within a different project, it has to be ensured that the settings.py is set correctly.
### Dependencies
Install required Python packages using pip and `requirements.txt`
```bash
pip install -r requirements.txt
```
### Database
```bash
python manage.py migrate
```
### Superuser (optional)
Create an optional superuser
```bash
python manage.py createsuperuser
```
### Server
Run development server
```bash
python manage.py runserver
```