Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #185: Added a Favicon #188

Merged
merged 3 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions backend/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def in_venv():
exit()

# Print the python version
subprocess.run(['python3', '--version'])
subprocess.run(['python', '--version'])

# Install dependencies
print('Installing dependencies...')
Expand All @@ -26,23 +26,23 @@ def in_venv():

# Make Migrations
print('Making migrations...')
subprocess.run(['python3', 'manage.py', 'makemigrations', 'accounts'])
subprocess.run(['python3', 'manage.py', 'makemigrations', 'products'])
subprocess.run(['python3', 'manage.py', 'makemigrations', 'events'])
subprocess.run(['python3', 'manage.py', 'makemigrations', 'tickets'])
subprocess.run(['python3', 'manage.py', 'makemigrations', 'orders'])
subprocess.run(['python3', 'manage.py', 'makemigrations'])
subprocess.run(['python', 'manage.py', 'makemigrations', 'accounts'])
subprocess.run(['python', 'manage.py', 'makemigrations', 'products'])
subprocess.run(['python', 'manage.py', 'makemigrations', 'events'])
subprocess.run(['python', 'manage.py', 'makemigrations', 'tickets'])
subprocess.run(['python', 'manage.py', 'makemigrations', 'orders'])
subprocess.run(['python', 'manage.py', 'makemigrations'])
print("Migrations made!")

# Migrate the database
print('Migrating the database...')
subprocess.run(['python3', 'manage.py', 'migrate'])
subprocess.run(['python', 'manage.py', 'migrate'])
print("Database migrated!")

# Run the server

print('Running the server...')
subprocess.run(['python3', 'manage.py', 'runserver'])
subprocess.run(['python', 'manage.py', 'runserver'])

except KeyboardInterrupt:
print("Process interrupted!")
Expand Down
4 changes: 4 additions & 0 deletions frontend/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<template>

<title>GetIt</title>
<link rel="icon" type="image/png" href="\Favicon.svg">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rename the image file to favicon.svg, change it here also.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yashpatil641 You haven't addressed this completely!!


<div class="justify-center items-center h-[80vh] ml-48 overflow-y-hidden hidden lg:flex">
<div class="">
<p class="text-xl text-gray-600 mb-2">Don't miss out on the Events! Get your tickets now.</p>
Expand Down
4 changes: 4 additions & 0 deletions frontend/public/Favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading