summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAkshen2018-06-19 13:02:11 +0530
committerAkshen2018-06-19 13:02:11 +0530
commitaf56271b75ebdc4305313245357160ca65cfcbfd (patch)
tree182624cad3fd5879cfc392ee2e64ad23f26461bf /docs
parent12db60f73acfb5f8bc3d33a21f03d6e46997ad94 (diff)
downloadworkshop_booking-af56271b75ebdc4305313245357160ca65cfcbfd.tar.gz
workshop_booking-af56271b75ebdc4305313245357160ca65cfcbfd.tar.bz2
workshop_booking-af56271b75ebdc4305313245357160ca65cfcbfd.zip
Add README.md and Getting_Started.md
Diffstat (limited to 'docs')
-rw-r--r--docs/Getting_Started.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/Getting_Started.md b/docs/Getting_Started.md
new file mode 100644
index 0000000..7a81154
--- /dev/null
+++ b/docs/Getting_Started.md
@@ -0,0 +1,40 @@
+# Guide to install and get this website running
+
+### Follow below given Steps to get started
+> __NOTE__: Use Python3
+1. Clone this repo.
+ > git clone https://github.com/FOSSEE/workshop_booking.git
+
+2. Create a virtual environment and install all the required packages from requirements.txt
+ > pip install -r requirements.txt
+
+3. Make Migrations and Migrate
+ > python manage.py makemigrations\
+ > python manage.py migrate
+
+4. Create Super User
+ > python manage.py createsuperuser
+
+5. Start Server
+ > python manage.py runserver
+
+6. Goto admin page and login using superuser credentials
+ > localhost:8000/admin
+
+7. Goto Groups and create one group called __instructor__ and give it all permissions.
+
+8. By default when a user registers, he is assigned a coordinator position, using the admin panel set the required users profile position as instructor and add him/her in instructor group along with the required permissions.
+
+9. Under *settings.py* file see to it that all required variables are set then you're good to go!
+
+### Instrutor specific steps
+
+1. An instructor can create workshops as per his/her availibility in __Create Workshop__ tab.
+
+2. Instructor can see monthly workshop count, upcoming workshop etc. in Statistics > Workshop Statistics
+
+
+### Coordinator specific steps
+
+1. A coordinator can sent workshop proposal based on his/her convenience under Workshops > Propose a Workshop option.
+