Skip to content

Moroccan Association for YES Alumni official website. Built using Django and Tailwind.

Notifications You must be signed in to change notification settings

aabboudi/yesalumni-morocco

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moroccan Association for YES Alumni

This is the official repository for the website of YES Alumni Morocco

Currently hosted on Azure Web Apps via yesalumni-morocco.azurewebsites.net.

Technologies Used

Getting Started

To use this template to start your own project:

First clone the repository from Github and switch to the new directory:

git clone https://github.com/aabboudi/yesalumni-morocco.git
cd .\yesalumni-morocco\

Create or activate the virtual environment for your project:

virtualenv venv
.\venv\Scripts\activate

Install project dependencies:

pip install -r requirements.txt

Install UI dependencies:

cd .\ui\
npm install
cd ..

Make and apply all migrations:

py manage.py makemigrations
py manage.py migrate

Make sure STATIC_ROOT is defined in settings.py and collect all static files in order for styles to work:

py manage.py collectstatic

Create a superuser to access the admin interface:

py manage.py createsuperuser

You can now run the development server:

py manage.py runserver