EatSwift https://eatswift.onrender.com/
EatSwift is a comprehensive platform for food ordering, restaurant registration, and order management.
Instructions on how to install and set up your Django project locally.
- Clone the Repository: git clone https://github.com/chiranjivikeshav/DBMS_Restaurants_management.git
- Create and Activate a Virtual Environment (Optional but Recommended): cd your-django-project
- Install Project Dependencies: pip install -r requirements.txt
- Set Up the Database: If you want to uses a new database, create a new database and run the migrations to set up the database schema
- Create a Superuser (Optional): If you want to uses Django's admin interface, create a superuser
- Start the Server: Start the Django development server to run the project locally
python -m venv venv
source venv/bin/activate ( On Windows, use `venv\Scripts\activate`)
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
this Django project can use by following above instructions .You can access the admin interface at http://127.0.0.1:8000/admin/. Log in using the superuser credentials to access the admin panel..