https://github.com/romanpecheritsa/nextgenstore
NextGen Store is an online electronics store developed in Django using templates and Bootstrap to create a modern interface
https://github.com/romanpecheritsa/nextgenstore
bootstrap django postgresql
Last synced: 3 months ago
JSON representation
NextGen Store is an online electronics store developed in Django using templates and Bootstrap to create a modern interface
- Host: GitHub
- URL: https://github.com/romanpecheritsa/nextgenstore
- Owner: RomanPecheritsa
- Created: 2024-08-27T12:28:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-04T20:41:56.000Z (over 1 year ago)
- Last Synced: 2025-01-04T21:28:19.980Z (over 1 year ago)
- Topics: bootstrap, django, postgresql
- Language: Python
- Homepage:
- Size: 4.74 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NextGen Store
## Project Description
An online store project that will be finalized in each lesson throughout the course.
## Installation and Setup
### 1. Clone the Repository
```bash
git clone https://github.com/RomanPecheritsa/NextGenStore
cd NextGenStore
```
### 2. Copy the env.example file to .env:
Open.env and replace the values of the variables with your own
```bash
cp .env.example .env
```
### 3. Install Dependencies
The project uses Poetry for dependency management. Ensure Poetry is installed, then run the following command to install all dependencies:
```bash
poetry shell
poetry install
```
### 4. Start Migrations
To start migrations, use the following command:
```bash
python3 manage.py migrate
```
### 5. Load Fixture
Loading test fixtures for the database:
```bash
python3 manage.py load_fixtures
```
### 6. Create Superuser
Enter the command in the terminal:
```bash
python3 manage.py csu
```
or
```bash
python manage.py csu --email=example@example.com --password=SuperSecretPassword123
```
### 7. Run Server
To run server, use the following command:
```bash
python3 manage.py runserver
```
The server will be available at http://127.0.0.1:8000