Skip to content

KamandPrompt/SNTC-Calendar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GYMKHANA Calendar

Installing and running

Clone the repository

Add ALLOWED_HOSTS in mycalendar/settings.py for deployment

Install virtual environment

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

pip3 install virtualenv 

Now create a virtual environment

virtualenv venv 

you can use any name insted of venv

Active your virtual environment:

source venv/bin/activate

Run the following commands in project directory.

You might need to delete db.sqlite3 to start afresh.

pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate --run-syncdb
python manage.py collectstatic
python manage.py createsuperuser
python manage.py runserver

Adding Google OAuth2.0 API Key's credentials in admin Social Applications.

  1. create a Google Cloud Console Project.

  2. Go to Credentials, Auth consent, add a new app.

  3. Create new OAuth Credentials and download the json.

  4. Go to http://127.0.0.1:8000/admin and sign in as superuser.

  5. Add a new Site.

  6. Add the Social Applications and the credentials and the site.

  7. Copy .env.sample to a new file .env and add above credentials here also.

  8. You are ready to run the App!

For running the web-app on the server as a background process, use nohup.

nohup python manage.py runserver &  

This will output a PID, which can be later used to kill the process.


Updates:

Note: http urls are no longer supported for non local domains

"python manage.py createsuperuser" should be run separately when in Docker to create the admin

In /admin page, setup "Social applications"

users directly sign in using Oauth, only clubs/secretaries can create events so add them to clubs separately from /admin page