Skip to content

karyao/next_tea_me

Repository files navigation

Django Project Template

NWHACKS 2025, Next Tea Me

Prerequisites

  • Python 3.8 or higher
  • pip (Python package installer)
  • virtualenv or venv

Installation

  1. Clone the repository:
git clone <your-repository-url>
cd <project-name>
  1. Create and activate virtual environment:

Windows:

python -m venv venv
venv\Scripts\activate

MacOS/Linux:

python -m venv venv
source venv/bin/activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Configure environment variables:
  • Copy .env.example to .env
  • Update the values in .env with your configuration

Running the Project

  1. Start the development server:
python manage.py runserver
  1. Open your browser and navigate to:

Development

Adding New Apps

  1. Create a new app in the apps directory:
python manage.py startapp app_name apps/app_name
  1. Add the app to INSTALLED_APPS in config/settings/base.py:
INSTALLED_APPS = [
    ...
    'apps.app_name',
]

Deployment

  1. Update .env with production settings
  2. Collect static files:
python manage.py collectstatic
  1. Set DEBUG=False in production
  2. Configure your web server (e.g., Nginx, Apache)

About

nwHacks 2025 Project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages