# drive-server **Repository Path**: kvnjiga/internxt_drive-server ## Basic Information - **Project Name**: drive-server - **Description**: 云存储 - **Primary Language**: JavaScript - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-13 - **Last Updated**: 2024-08-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Drive Server ## Prerrequisites * Node v16 ```nvm install 16``` * Yarn ```npm i -g yarn``` # Install - Create a `.npmrc` file from the `.npmrc.template` example provided in the repo. - Replace `TOKEN` with your own [Github Personal Access Token](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token) with `read:packages` permission **ONLY** - Use `yarn` to install project dependencies. #### Database setup (MariaDB) Create schema and configure `config/environments/development.json` Run `yarn run migrate` to create tables. #### Start app Run `yarn start` to start server in production mode. Run `yarn run dev` to start with nodemon and development environment.