https://github.com/zeuxisoo/my-progetto
Web application to record my projects
https://github.com/zeuxisoo/my-progetto
angular javascript web
Last synced: about 1 month ago
JSON representation
Web application to record my projects
- Host: GitHub
- URL: https://github.com/zeuxisoo/my-progetto
- Owner: zeuxisoo
- Created: 2011-02-26T07:52:36.000Z (over 15 years ago)
- Default Branch: 3.x
- Last Pushed: 2024-06-19T07:33:05.000Z (about 2 years ago)
- Last Synced: 2026-01-14T08:50:38.123Z (5 months ago)
- Topics: angular, javascript, web
- Language: TypeScript
- Homepage:
- Size: 981 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Progetto
Web application to record some projects data
## Development
Install the dependencies
npm install
Run the develop server
make dev
Generate the projects data
make data
Generate the project photos and thumbs
make resize
## Build
Run the command
make build
## Deploy
Edit the deploy config in environment file
cp .env.example .env
Run the command
make deploy
## Add Project
Make project directory
mkdir public/assets/data/works/[NUMBER]
Copy the default project info into related project directory
cp public/assets/data/works/default-info.yaml public/assets/data/works/[NUMBER]/info.yaml
Edit the project info file
vim public/assets/data/works/[NUMBER]/info.yaml
Place the photos into project directory (The image must start with 01-99.png)
cp -Rf /path/to/my/project/screenshorts/*.png public/assets/data/works/[NUMBER]/
Run the following command to generate projects data, photos and thumbs again
make data
make resize