diff --git a/README.md b/README.md index 0368958..c8a707f 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ # My test social network site based on next.js and actix.rs + +To start project just writ `docker compose up -d` +And go to http://127.0.0.1:3000/ diff --git a/backend/.dockerignore b/backend/.dockerignore new file mode 100644 index 0000000..1935d83 --- /dev/null +++ b/backend/.dockerignore @@ -0,0 +1,5 @@ +target +Dockerfile +.dockerignore +.gitignore +README.md diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..57959a9 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,17 @@ +# Use the official Rust image as the base image +FROM rust:latest + +# Set the working directory inside the container +WORKDIR /usr/src/app + +# Copy the Cargo.toml and Cargo.lock files +COPY Cargo.toml Cargo.lock ./ + +# Copy the source code +COPY src ./src + +# Install dependencies and build the application +RUN cargo build --release + +# Set the command to run the application +CMD ["./target/release/backend"] \ No newline at end of file diff --git a/backend/src/main.rs b/backend/src/main.rs index 53c80af..f9b7155 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -31,7 +31,7 @@ async fn main() -> std::io::Result<()> { .app_data(web::Data::new(db.clone())) .configure(routes::init) }) - .bind(("127.0.0.1", 8080))? + .bind(("0.0.0.0", 8080))? .run() .await } \ No newline at end of file diff --git a/backend/src/routes/user_routes.rs b/backend/src/routes/user_routes.rs index 0e463b8..74cdf8f 100644 --- a/backend/src/routes/user_routes.rs +++ b/backend/src/routes/user_routes.rs @@ -47,13 +47,21 @@ async fn get_next_id(db: &MongoRepo) -> i32 { // Initialize counter with 100 let initial_counter = Counter { id: "user_id".to_string(), - seq: 100, + seq: 101, }; counter_collection .insert_one(initial_counter) .await .expect("Failed to initialize counter"); - 100 + + // Immediately increment to 101 for first user + let update = doc! { "$inc": { "seq": 1 } }; + let updated = counter_collection + .find_one_and_update(filter, update) + .await + .expect("Failed to update counter") + .unwrap(); + updated.seq // Will return 101 for first user } } } diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6c70681 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,39 @@ +services: + mongodb: + image: mongo:latest + container_name: mongodb + ports: + - '27017:27017' + volumes: + - mongo-data:/data/db + networks: + - social-network + + backend: + image: deusbog/backend-social-network + container_name: backend-social-network + environment: + - DATABASE_URL=mongodb://mongodb:27017/social_network + ports: + - '8080:8080' + depends_on: + - mongodb + networks: + - social-network + + frontend: + image: deusbog/frontend-social-network + container_name: frontend-social-network + ports: + - '3000:3000' + depends_on: + - backend + networks: + - social-network + +volumes: + mongo-data: + +networks: + social-network: + driver: bridge diff --git a/frontend/.dockerignore b/frontend/.dockerignore new file mode 100644 index 0000000..f92f56f --- /dev/null +++ b/frontend/.dockerignore @@ -0,0 +1,6 @@ +**/node_modules/ +**/.next/ +.gitignore +README.md +Dockerfile +.dockerignore \ No newline at end of file diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 0000000..5e8c646 --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,23 @@ +# Use the official Node.js image as the base image +FROM node:latest + +# Set the working directory inside the container +WORKDIR /usr/src/app + +# Copy package.json and package-lock.json +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy the rest of the application code +COPY . . + +# Build the Next.js application +RUN npm run build + +# Expose the port the app runs on +EXPOSE 3000 + +# Start the Next.js application +CMD ["npm", "start"] \ No newline at end of file