Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adistrim/scholarrise
https://github.com/adistrim/scholarrise
docker nextjs
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/adistrim/scholarrise
- Owner: adistrim
- License: mit
- Created: 2024-07-04T08:09:59.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T10:08:34.000Z (4 months ago)
- Last Synced: 2024-07-15T19:12:03.908Z (4 months ago)
- Topics: docker, nextjs
- Language: JavaScript
- Homepage: https://scholarrise.vercel.app
- Size: 14.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ScholarRise India
## Project Structure
For detailed project structure, please refer to [Project Structure](ProjectStructure.txt)## Docker
### Development Environment
To build the development Docker image:
```bash
docker build -t scholarrise-dev -f Dockerfile.dev .
```To run the development container:
```bash
docker run -p 3000:3000 -v $(pwd):/app scholarrise-dev
```### Production Environment
To build the production Docker image:
```bash
docker build -t scholarrise-prod -f Dockerfile.prod .
```To run the production container:
```bash
docker run -p 3000:3000 scholarrise-prod
```## LICENSE
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.