This project is online onboarding system for small, medium and huge organization. It is specially designed to for remote work, home office during coronavirus pandemia.
- www www.onlineonboarding.net
- email onlineonboardingnet@gmail.com
- GitHub https://github.com/binawork/OnlineOnboarding
- Google Drive https://drive.google.com/drive/folders/1_l1zUqGpWLETLL0MxekPrqh3OUcHVxz1
- Balsamiq https://balsamiq.cloud/sviuzng/p1y6lm3
- Diagram bazy danych https://drive.google.com/file/d/1v__3IoSzLdQVxtVwABCnvgfaCTsj9M7U/view?usp=sharing
To get this project up and running locally on your computer:
- Set up the Python development environment. We recommend using a Python virtual environment.
- Create Database How install and join PostgreSQL.
- For local settings (like database credentials, secret_key or email host settings) create local_settings.py in the OnlineOnboarding directory and put your settings there.
- Assuming you have Python setup, run the following commands (if you're on Windows you may use
py
orpy -3
instead ofpython
to start Python):pip3 install -r requirements.txt python3 manage.py makemigrations python3 manage.py migrate python3 manage.py collectstatic python3 manage.py test # Run the standard tests. These should all pass. python3 manage.py createsuperuser # Create a superuser python3 manage.py runserver
- Open a browser to
http://127.0.0.1:8000/admin/
to open the admin site - Create a few test objects of each type.
- Open tab to
http://127.0.0.1:8000
to see the main site, with your new objects.