{"id":17478062,"url":"https://github.com/sunithvs/marine-science","last_synced_at":"2026-03-19T01:12:58.465Z","repository":{"id":225477211,"uuid":"744847633","full_name":"sunithvs/marine-science","owner":"sunithvs","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-07T12:49:06.000Z","size":145042,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-18T23:20:41.846Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sunithvs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-18T05:59:31.000Z","updated_at":"2024-03-02T09:22:41.000Z","dependencies_parsed_at":"2024-12-07T21:17:01.554Z","dependency_job_id":null,"html_url":"https://github.com/sunithvs/marine-science","commit_stats":{"total_commits":81,"total_committers":5,"mean_commits":16.2,"dds":0.1728395061728395,"last_synced_commit":"c1d18d92f7ecec73d63936b506ba1cc99e462416"},"previous_names":["sunithvs/marine-science"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunithvs%2Fmarine-science","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunithvs%2Fmarine-science/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunithvs%2Fmarine-science/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunithvs%2Fmarine-science/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunithvs","download_url":"https://codeload.github.com/sunithvs/marine-science/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246026111,"owners_count":20711581,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-18T20:10:54.062Z","updated_at":"2026-02-09T07:33:13.746Z","avatar_url":"https://github.com/sunithvs.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Marine Science Conference Management System\n\nA Django-based web application for managing marine science conference registrations, abstract submissions, and payments. The system provides a complete solution for conference organization, including user authentication, payment processing, and content management.\n\n## Features\n\n- User registration and authentication system\n- Abstract submission and management\n- Payment integration for conference registration\n- Admin dashboard for managing submissions\n- Responsive design with multiple template themes\n- Docker containerization for easy deployment\n- Nginx configuration for production deployment\n- Multi-environment support (development and production)\n\n## Tech Stack\n\n- Django\n- PostgreSQL (configured via Docker)\n- Nginx\n- Docker \u0026 Docker Compose\n- Bootstrap\n- jQuery\n- Various frontend libraries (AOS, Swiper, GLightbox, etc.)\n\n## Project Structure\n\n```\nsunithvs-marine-science/\n├── apps/\n│   ├── auth_login/      # Authentication \u0026 user management\n│   ├── base/            # Core functionality \u0026 utilities\n│   ├── payment/         # Payment processing\n│   ├── maricon/         # Conference management\n│   └── home/           # Main website content\n├── config/             # Project configuration\n│   └── settings/       # Environment-specific settings\n├── templates/          # HTML templates\n├── static/             # Static files (CSS, JS, images)\n├── nginx/             # Nginx configuration\n└── scripts/           # Utility scripts\n```\n\n## Prerequisites\n\n- Docker and Docker Compose\n- Python 3.x (for local development)\n- Git\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone \u003crepository-url\u003e\ncd sunithvs-marine-science\n```\n\n2. Create environment file:\n```bash\ncp env.example .env\n```\nEdit `.env` with your configuration values.\n\n3. Build and start the containers:\n\nFor development:\n```bash\ndocker-compose up --build\n```\n\nFor production:\n```bash\ndocker-compose -f docker-compose-prod.yml up --build\n```\n\n## Development Setup\n\n1. Create a virtual environment:\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n2. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n3. Run migrations:\n```bash\npython manage.py migrate\n```\n\n4. Create superuser:\n```bash\npython manage.py createsuperuser\n```\n\n5. Run the development server:\n```bash\npython manage.py runserver\n```\n\n## Docker Deployment\n\nThe project includes two Docker Compose configurations:\n\n- `docker-compose.yml`: Development environment\n- `docker-compose-prod.yml`: Production environment with Nginx\n\n### Production Deployment\n\n1. Configure your environment variables in `.env`\n2. Build and start the production containers:\n```bash\ndocker-compose -f docker-compose-prod.yml up --build -d\n```\n\n## Available Commands\n\n- Run linting:\n```bash\npython manage.py lint\n```\n\n- Collect static files:\n```bash\npython manage.py collectstatic\n```\n\n## Project Components\n\n### Templates\n- `new_maricon/`: New conference theme templates\n- `maricon/`: Original conference templates\n- `home/`: Main website templates\n- `payment/`: Payment processing templates\n\n### Static Files\n- Vendor libraries in `static/assets/vendor/`\n- Custom styles in `static/css/`\n- JavaScript files in `static/js/`\n- Conference documents in `static/doc/`\n\n## Security\n\n- Configure `settings/prod.py` for production deployment\n- Update `SECRET_KEY` in environment variables\n- Set up proper SSL/TLS in Nginx configuration\n- Configure proper database credentials\n- Set up backup systems for the database\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunithvs%2Fmarine-science","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunithvs%2Fmarine-science","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunithvs%2Fmarine-science/lists"}